From 869142bc891367e489d38ed20b53e577adcea714 Mon Sep 17 00:00:00 2001 From: Duncan Frost Date: Tue, 14 Apr 2015 18:40:41 +0100 Subject: [PATCH] Set options window to always be ontop --- src/windows/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/options.c b/src/windows/options.c index 782939dbb5..27cbdf50d2 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, 0); + w = window_create_centred(WW, WH, (uint32*)window_options_events, WC_OPTIONS, WF_STICK_TO_FRONT); w->widgets = window_options_widgets; w->enabled_widgets = (1ULL << WIDX_CLOSE) |