source: projects/specs/trunk/g/guake/0001-Fix-focus-issue-on-gnome-shell.patch @ 8096

Revision 8096, 869 bytes checked in by iwaim, 10 years ago (diff)

guake 0.4.4-2

  • src/guake

    From cf5dbda6749e8d0c47b44269b92e58d266ec830b Mon Sep 17 00:00:00 2001
    From: Pierre-Yves Chibon <pingou@pingoured.fr>
    Date: Tue, 26 Jun 2012 09:23:20 +0200
    Subject: [PATCH] Fix focus issue on gnome-shell
    
    This fixes issue #436 from guake's trac.
    Problem was that after hiding guake's window the window below doesn't get the focus back.
    
    However, this fix seems to not work on ubuntu (something with unity?)
    ---
     src/guake |    1 +
     1 file changed, 1 insertion(+)
    
    diff --git a/src/guake b/src/guake
    index 33ad7fd..acabb45 100644
    a b class Guake(SimpleGladeApp): 
    809809        """Hides the main window of the terminal and sets the visible 
    810810        flag to False. 
    811811        """ 
     812        self.window.set_keep_below(True) 
    812813        self.window.hide() # Don't use hide_all here! 
    813814 
    814815    def get_final_window_rect(self): 
Note: See TracBrowser for help on using the repository browser.