Better logic in focus-out-event blocking/unblocking, will not crash in Mint 13

This commit is contained in:
monsta 2014-04-01 15:26:00 +04:00
parent 8c2ef69ca9
commit 7ef248fa8e

View File

@ -91,6 +91,7 @@ class MainWindow( object ):
self.window.connect( "key-press-event", self.onKeyPress )
self.window.connect( "focus-in-event", self.onFocusIn )
self.loseFocusId = self.window.connect( "focus-out-event", self.onFocusOut )
self.loseFocusBlocked = False
self.window.stick()
@ -465,17 +466,9 @@ class MainWindow( object ):
self.window.hide()
def onFocusIn( self, *args ):
def dummy( *args ): pass
signalId = GObject.signal_lookup( "focus-out-event", self.window )
while True:
result = GObject.signal_handler_find( self.window,
GObject.SignalMatchType.ID | GObject.SignalMatchType.UNBLOCKED,
signalId, 0, None, dummy, dummy )
if result == 0:
if self.loseFocusBlocked:
self.window.handler_unblock( self.loseFocusId )
else:
break
self.loseFocusBlocked = False
return False
@ -485,7 +478,9 @@ class MainWindow( object ):
return False
def stopHiding( self ):
if not self.loseFocusBlocked:
self.window.handler_block( self.loseFocusId )
self.loseFocusBlocked = True
class MenuWin( object ):
def __init__( self, applet, iid ):