diff --git a/src/windows/editor_object_selection.c b/src/windows/editor_object_selection.c index ebd4dfa96c..2b53a55c57 100644 --- a/src/windows/editor_object_selection.c +++ b/src/windows/editor_object_selection.c @@ -214,7 +214,7 @@ void window_editor_object_selection_open() 400, (uint32*)window_editor_object_selection_events, WC_EDITOR_OBJECT_SELECTION, - WF_STICK_TO_FRONT + WF_10 ); window->widgets = window_editor_object_selection_widgets; diff --git a/src/windows/options.c b/src/windows/options.c index 27cbdf50d2..782939dbb5 100644 --- a/src/windows/options.c +++ b/src/windows/options.c @@ -221,7 +221,7 @@ void window_options_open() if (w != NULL) return; - w = window_create_centred(WW, WH, (uint32*)window_options_events, WC_OPTIONS, WF_STICK_TO_FRONT); + w = window_create_centred(WW, WH, (uint32*)window_options_events, WC_OPTIONS, 0); w->widgets = window_options_widgets; w->enabled_widgets = (1ULL << WIDX_CLOSE) | diff --git a/src/windows/title_scenarioselect.c b/src/windows/title_scenarioselect.c index c527d9950a..3ad4edef4d 100644 --- a/src/windows/title_scenarioselect.c +++ b/src/windows/title_scenarioselect.c @@ -116,7 +116,7 @@ void window_scenarioselect_open() 334, (uint32*)window_scenarioselect_events, WC_SCENARIO_SELECT, - WF_STICK_TO_FRONT | WF_10 + WF_10 ); window->widgets = window_scenarioselect_widgets;