From 3128e59d228a5fc3cbc6ac2fab5c6b51a4693804 Mon Sep 17 00:00:00 2001 From: Flakebi Date: Fri, 9 Jan 2015 21:37:02 +0100 Subject: [PATCH] Update checkboxes and textfield in the tabbed user screen too --- src/states_screens/user_screen.cpp | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/states_screens/user_screen.cpp b/src/states_screens/user_screen.cpp index 8df444ba4..2e172810a 100644 --- a/src/states_screens/user_screen.cpp +++ b/src/states_screens/user_screen.cpp @@ -112,13 +112,7 @@ void BaseUserScreen::init() // Select the current player. That can only be done after // updateItemDisplay is called. if (current_player_index != -1) - { - // Only set focus in case of non-tabbed version (so that keyboard - // or gamepad navigation with tabs works as expected, i.e. you can - // select the next tab without having to go up to the tab list first. - if(!getWidget("options_choice")) - selectUser(current_player_index); - } + selectUser(current_player_index); // no current player found // The first player is the most frequently used, so select it else if (PlayerManager::get()->getNumPlayers() > 0) @@ -160,15 +154,19 @@ void BaseUserScreen::tearDown() // ---------------------------------------------------------------------------- /** Called when a user is selected. It updates the online checkbox and - * entrye fields. + * entry fields. */ void BaseUserScreen::selectUser(int index) { PlayerProfile *profile = PlayerManager::get()->getPlayer(index); assert(profile); - m_players->setSelection(StringUtils::toString(index), PLAYER_ID_GAME_MASTER, - /*focusIt*/ true); + // Only set focus in case of non-tabbed version (so that keyboard + // or gamepad navigation with tabs works as expected, i.e. you can + // select the next tab without having to go up to the tab list first. + if(!getWidget("options_choice")) + m_players->setSelection(StringUtils::toString(index), PLAYER_ID_GAME_MASTER, + /*focusIt*/ true); m_username_tb->setText(profile->getLastOnlineName()); // Delete a password that might have been typed for another user @@ -596,7 +594,7 @@ void TabbedUserScreen::init() if (tab_bar) tab_bar->select("tab_players", PLAYER_ID_GAME_MASTER); tab_bar->getRibbonChildren()[0].setTooltip( _("Graphics") ); tab_bar->getRibbonChildren()[1].setTooltip( _("Audio") ); - tab_bar->getRibbonChildren()[2].setTooltip(_("User Interface")); + tab_bar->getRibbonChildren()[2].setTooltip( _("User Interface") ); tab_bar->getRibbonChildren()[4].setTooltip( _("Controls") ); BaseUserScreen::init(); } // init