We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee985e0 commit 5c67262Copy full SHA for 5c67262
tests/src/main/java/jme3utilities/nifty/test/AppChooser.java
@@ -170,7 +170,7 @@ public void guiInitializeApplication() {
170
InputMode inputMode = getDefaultInputMode();
171
172
// Create and attach a controller for the main (and only) screen.
173
- mainScreen = new GuiScreenController(
+ this.mainScreen = new GuiScreenController(
174
"AppChooser/mainScreen",
175
"Interface/Nifty/screens/AppChooser/mainScreen.xml",
176
InitialState.Enabled);
@@ -224,7 +224,7 @@ public void run() {
224
for (int i = 0; i < mainClasses.length; ++i) {
225
String appName = mainClasses[i].getSimpleName();
226
if (arg.equals(appName)) {
227
- chosenAppIndex = i;
+ this.chosenAppIndex = i;
228
break;
229
}
230
0 commit comments