version 0.3.1 release
authorGavin Andresen <gavinandresen@gmail.com>
Mon, 19 Jul 2010 01:10:37 +0000 (01:10 +0000)
committerGavin Andresen <gavinandresen@gmail.com>
Mon, 19 Jul 2010 01:10:37 +0000 (01:10 +0000)
ui.cpp

diff --git a/ui.cpp b/ui.cpp
index 319e3fd..3da94a2 100644 (file)
--- a/ui.cpp
+++ b/ui.cpp
@@ -375,6 +375,9 @@ void CMainFrame::OnIconize(wxIconizeEvent& event)
     // to get rid of the deprecated warning.  Just ignore it.
     if (!event.Iconized())
         fClosedToTray = false;
+#ifdef __WXGTK__
+    if (mapArgs.count("-minimizetotray")) {
+#endif
     // The tray icon sometimes disappears on ubuntu karmic
     // Hiding the taskbar button doesn't work cleanly on ubuntu lucid
     // Reports of CPU peg on 64-bit linux
@@ -382,6 +385,9 @@ void CMainFrame::OnIconize(wxIconizeEvent& event)
         fClosedToTray = true;
     Show(!fClosedToTray);
     ptaskbaricon->Show(fMinimizeToTray || fClosedToTray);
+#ifdef __WXGTK__
+    }
+#endif
 }
 
 void CMainFrame::OnMouseEvents(wxMouseEvent& event)