From: Carl Hetherington Date: Mon, 25 Mar 2019 00:07:03 +0000 (+0000) Subject: Try to fix server status window being opened behind others (#1503). X-Git-Tag: v2.13.136~2 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=25c15064f4c816d310c34e2e27092b3c2d02afb3 Try to fix server status window being opened behind others (#1503). --- diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index ab3e5b258..1554c02f4 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -145,7 +145,11 @@ public: : wxDialog ( 0, wxID_ANY, _("DCP-o-matic Encode Server"), wxDefaultPosition, wxDefaultSize, +#ifdef DCPOMATIC_OSX + wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxSTAY_ON_TOP +#else wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER +#endif ) { wxFlexGridSizer* state_sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_GAP, DCPOMATIC_SIZER_GAP);