From 5397b80ebe200293aa19b439d2273a1cf24dbf52 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 9 Oct 2015 01:55:47 +0100 Subject: [PATCH] OSX tweaks. --- src/tools/dcpomatic_server.cc | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index 978f600b2..19271d66b 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -116,23 +116,17 @@ public: #ifdef DCPOMATIC_WINDOWS wxIcon icon (std_to_wx ("taskbar_icon")); #endif + #ifdef DCPOMATIC_LINUX wxInitAllImageHandlers(); wxBitmap bitmap (wxString::Format (wxT ("%s/dcpomatic2_server_small.png"), LINUX_SHARE_PREFIX), wxBITMAP_TYPE_PNG); wxIcon icon; icon.CopyFromBitmap (bitmap); #endif + #ifndef DCPOMATIC_OSX SetIcon (icon, std_to_wx ("DCP-o-matic encode server")); -#endif - -#ifdef DCPOMATIC_OSX - wxMenu* file = new wxMenu; - file->Append (wxID_EXIT, _("&Exit")); - wxMenuBar* bar = new wxMenuBar; - bar->Append (file, _("&File")); - SetMenuBar (bar); - +#else status (); #endif @@ -190,6 +184,14 @@ private: _timer.reset (new wxTimer (this)); _timer->Start (1000); +#ifdef DCPOMATIC_OSX + wxMenu* file = new wxMenu; + file->Append (wxID_EXIT, _("&Exit")); + wxMenuBar* bar = new wxMenuBar; + bar->Append (file, _("&File")); + SetMenuBar (bar); +#endif + return true; } -- 2.30.2