banshee r4819 - in trunk/banshee: . src/Backends/Banshee.Osx/Banshee.OsxBackend



Author: eoinh
Date: Mon Nov 10 07:34:35 2008
New Revision: 4819
URL: http://svn.gnome.org/viewvc/banshee?rev=4819&view=rev

Log:
2008-11-09  Eoin Hennessy <eoin randomrules org>

    * src/Backends/Banshee.Osx/Banshee.OsxBackend/OsxBackend.cs: Fixed issue
    with dock events being ignored due to change in ige-mac-integration api.
    Disabled quitting via dock item menu until BGO #560108 is fixed.



Modified:
   trunk/banshee/ChangeLog
   trunk/banshee/src/Backends/Banshee.Osx/Banshee.OsxBackend/OsxService.cs

Modified: trunk/banshee/src/Backends/Banshee.Osx/Banshee.OsxBackend/OsxService.cs
==============================================================================
--- trunk/banshee/src/Backends/Banshee.Osx/Banshee.OsxBackend/OsxService.cs	(original)
+++ trunk/banshee/src/Backends/Banshee.Osx/Banshee.OsxBackend/OsxService.cs	Mon Nov 10 07:34:35 2008
@@ -94,14 +94,14 @@
 
             elements_service.PrimaryWindow.WindowStateEvent += WindowStateHandler;
             
-            // bind gtk menu to globel osx menu 
+            // bind gtk menu to global osx menu 
             BindMenuBar ();
 
             // make menu more osx-like
             AdjustMainMenu ();
 
             // add dock handlers
-            IgeMacDock doc = new IgeMacDock();
+            IgeMacDock doc = IgeMacDock.Default;
             doc.Clicked += OnDockClicked;
             doc.QuitActivate += OnDockQuitActivated;
         }
@@ -131,7 +131,10 @@
 
         private void OnDockQuitActivated (object o, System.EventArgs args) 
         {
-            Banshee.ServiceStack.Application.Shutdown ();
+            // FIXME: disabled due to issue with intermitant throwing of exception 
+            // while quitting via the dock item.. need to figure out where exactly
+            // the issue is..
+            //Banshee.ServiceStack.Application.Shutdown ();
         }
         
         private void BindMenuBar ()



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]