r6863 - bigboard/trunk



Author: hp
Date: 2007-11-01 17:38:17 -0500 (Thu, 01 Nov 2007)
New Revision: 6863

Modified:
   bigboard/trunk/main.py
Log:
add whiny comments about how we can't use actual minimized state for minimized dock windows

Modified: bigboard/trunk/main.py
===================================================================
--- bigboard/trunk/main.py	2007-11-01 21:52:56 UTC (rev 6862)
+++ bigboard/trunk/main.py	2007-11-01 22:38:17 UTC (rev 6863)
@@ -575,6 +575,8 @@
         if not self.__popped_out:
             _logger.debug("popping out")
             self._dw.show()
+            # we would prefer to need this, if iconify() worked on dock windows
+            #self._dw.deiconify()
             self.__queue_strut()
             self.__popped_out = True
             self.EmitPoppedOutChanged()
@@ -596,6 +598,12 @@
 
         _logger.debug("unpopping out")
         self.__popped_out = False
+        ## would be better to iconify, not hide - hide withdraws the
+        ## window, iconify should leave bigboard in the Ctrl+Alt+Tab
+        ## order.
+        ## Unfortunately, it appears metacity disallows minimize on
+        ## dock windows.
+        #self._dw.iconify()
         self._dw.hide()
         self.__queue_strut()
         self.EmitPoppedOutChanged()



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