@@ -172,8 +172,8 @@ protected void initialize() {
172
172
ToggleButton fundsButton = new NavButton (FundsView .class , Res .get ("mainView.menu.funds" ).toUpperCase ());
173
173
174
174
ToggleButton supportButton = new NavButton (SupportView .class , Res .get ("mainView.menu.support" ));
175
- ToggleButton settingsButton = new NavButton (SettingsView .class , Res .get ("mainView.menu.settings" ));
176
175
ToggleButton accountButton = new NavButton (AccountView .class , Res .get ("mainView.menu.account" ));
176
+ ToggleButton settingsButton = new NavButton (SettingsView .class , Res .get ("mainView.menu.settings" ));
177
177
178
178
JFXBadge portfolioButtonWithBadge = new JFXBadge (portfolioButton );
179
179
JFXBadge supportButtonWithBadge = new JFXBadge (supportButton );
@@ -199,10 +199,10 @@ protected void initialize() {
199
199
fundsButton .fire ();
200
200
} else if (Utilities .isAltOrCtrlPressed (KeyCode .DIGIT6 , keyEvent )) {
201
201
supportButton .fire ();
202
- } else if (Utilities .isAltOrCtrlPressed (KeyCode .DIGIT7 , keyEvent )) {
203
- settingsButton .fire ();
204
202
} else if (Utilities .isAltOrCtrlPressed (KeyCode .DIGIT8 , keyEvent )) {
205
203
accountButton .fire ();
204
+ } else if (Utilities .isAltOrCtrlPressed (KeyCode .DIGIT7 , keyEvent )) {
205
+ settingsButton .fire ();
206
206
}
207
207
});
208
208
}
@@ -305,8 +305,8 @@ protected Tooltip computeValue() {
305
305
primaryNav .getStyleClass ().add ("nav-primary" );
306
306
HBox .setHgrow (primaryNav , Priority .SOMETIMES );
307
307
308
- HBox secondaryNav = new HBox (supportButtonWithBadge , getNavigationSpacer (), settingsButtonWithBadge ,
309
- getNavigationSpacer (), accountButton , getNavigationSpacer ());
308
+ HBox secondaryNav = new HBox (supportButtonWithBadge , getNavigationSpacer (), accountButton ,
309
+ getNavigationSpacer (), settingsButtonWithBadge , getNavigationSpacer ());
310
310
secondaryNav .getStyleClass ().add ("nav-secondary" );
311
311
HBox .setHgrow (secondaryNav , Priority .SOMETIMES );
312
312
0 commit comments