Changeset 26 for trunk/Classes/game_preferences_display.cpp
- Timestamp:
- 2010-05-28 07:39:52 (2 years ago)
- File:
-
- 1 edited
-
trunk/Classes/game_preferences_display.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Classes/game_preferences_display.cpp
r23 r26 155 155 show_grid_button_(disp.video(), _("Show Grid"), gui::button::TYPE_CHECK), 156 156 save_replays_button_(disp.video(), _("Save Replay on SP/MP Victory or MP Defeat"), gui::button::TYPE_CHECK), 157 delete_saves_button_(disp.video(), _("Delete Auto-Saves on SP/MP Victory or MP Defeat"), gui::button::TYPE_CHECK),157 delete_saves_button_(disp.video(), _("Delete Auto-Saves on SP/MP Victory"), gui::button::TYPE_CHECK), 158 158 show_lobby_joins_button1_(disp.video(), _("Do Not Show Lobby Joins"), gui::button::TYPE_CHECK), 159 159 show_lobby_joins_button2_(disp.video(), _("Show Lobby Joins Of Friends Only"), gui::button::TYPE_CHECK), … … 510 510 // General tab 511 511 #ifdef __IPHONEOS__ 512 const int bottom_row_y = 245; 512 #ifdef __IPAD__ 513 const int bottom_row_y = 500; 514 #else 515 const int bottom_row_y = 245; 516 #endif 513 517 514 518 int ypos = rect.y + top_border; … … 661 665 ypos += short_interline; show_lobby_joins_button3_.set_location(rect.x, ypos); 662 666 663 friends_list_button_.set_location(rect.x, bottom_row_y - friends_list_button_.height());667 friends_list_button_.set_location(rect.x, ypos+short_interline); //bottom_row_y - friends_list_button_.height()); 664 668 665 669 mp_server_search_button_.set_location(rect.x + horizontal_padding + friends_list_button_.width(), bottom_row_y - mp_server_search_button_.height()); … … 682 686 683 687 friends_add_friend_button_.set_location(friends_xpos,ypos); 684 ypos += short_interline+3; friends_add_ignore_button_.set_location(friends_xpos,ypos);685 ypos += short_interline+3; friends_remove_button_.set_location(friends_xpos,ypos);688 ypos += friends_add_friend_button_.height() + 3; friends_add_ignore_button_.set_location(friends_xpos,ypos); 689 ypos += friends_add_friend_button_.height() + 3; friends_remove_button_.set_location(friends_xpos,ypos); 686 690 friends_back_button_.set_location(rect.x, bottom_row_y - friends_back_button_.height()); 687 691 … … 1166 1170 std::string const pre = IMAGE_PREFIX + std::string("icons/icon-"); 1167 1171 char const sep = COLUMN_SEPARATOR; 1168 items.push_back(pre + "general.png" + sep + sgettext("Prefs section^General"));1169 items.push_back(pre + "display.png" + sep + sgettext("Prefs section^Display"));1170 items.push_back(pre + "music.png" + sep + sgettext("Prefs section^Sound"));1171 items.push_back(pre + "multiplayer.png" + sep + sgettext("Prefs section^Multiplayer"));1172 items.push_back(pre + "general.png");// + sep + sgettext("Prefs section^General")); 1173 items.push_back(pre + "display.png");// + sep + sgettext("Prefs section^Display")); 1174 items.push_back(pre + "music.png");// + sep + sgettext("Prefs section^Sound")); 1175 items.push_back(pre + "multiplayer.png");// + sep + sgettext("Prefs section^Multiplayer")); 1172 1176 // items.push_back(pre + "advanced.png" + sep + sgettext("Advanced section^Advanced")); 1173 1177
Note: See TracChangeset
for help on using the changeset viewer.