Index: src/lang/english.txt =================================================================== --- src/lang/english.txt (revision 24113) +++ src/lang/english.txt (working copy) @@ -1013,7 +1013,7 @@ ############ range for difficulty levels ends STR_DIFFICULTY_LEVEL_HIGH_SCORE_BUTTON :{BLACK}Show hi-score chart -STR_DIFFICULTY_LEVEL_SAVE :{BLACK}Save +STR_DIFFICULTY_LEVEL_SAVE :{BLACK}Accept ############ range for difficulty settings starts STR_DIFFICULTY_LEVEL_SETTING_MAXIMUM_NO_COMPETITORS :{LTBLUE}Maximum no. competitors: {ORANGE}{COMMA} Index: src/settings_gui.cpp =================================================================== --- src/settings_gui.cpp (revision 24113) +++ src/settings_gui.cpp (working copy) @@ -909,7 +909,10 @@ /** Widget definition for the game difficulty settings window */ static const NWidgetPart _nested_game_difficulty_widgets[] = { - NWidget(WWT_CAPTION, COLOUR_MAUVE), SetDataTip(STR_DIFFICULTY_LEVEL_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), + NWidget(NWID_HORIZONTAL), + NWidget(WWT_CLOSEBOX, COLOUR_MAUVE), + NWidget(WWT_CAPTION, COLOUR_MAUVE), SetDataTip(STR_DIFFICULTY_LEVEL_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), + EndContainer(), NWidget(WWT_PANEL, COLOUR_MAUVE), NWidget(NWID_VERTICAL), SetPIP(2, 0, 2), NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(10, 0, 10), @@ -935,7 +938,6 @@ NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(10, 0, 10), NWidget(NWID_SPACER), SetFill(1, 0), NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_GD_ACCEPT), SetDataTip(STR_DIFFICULTY_LEVEL_SAVE, STR_NULL), SetFill(1, 0), - NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_GD_CANCEL), SetDataTip(STR_BUTTON_CANCEL, STR_NULL), SetFill(1, 0), NWidget(NWID_SPACER), SetFill(1, 0), EndContainer(), EndContainer(),