Changeset e7a19eed07ed6e0b459e69bf7e4e6678ea372e32

Show
Ignore:
Timestamp:
02/25/09 04:48:20 (3 years ago)
Author:
Lincoln de Sousa <lincoln@…>
Children:
2d18e1b6fb53ac8a1ea498e80b756b46bd4bc26a
Parents:
79065171ab9e78c426e9c46c8ff59eb390d7cd5e
git-committer:
Lincoln de Sousa <lincoln@…> (02/25/09 04:48:20)
Message:

Removing the set_keep_above from about dialog
constructor, it is not necessary anymore once main window
is hidden before showing about and prefs windows.

The another change was done to make lines fit in 79
columns and make pylint a little bit more happy.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/guake.py

    r6e52bd6 re7a19ee  
    5858                                          root='aboutdialog') 
    5959        dialog = self.get_widget('aboutdialog') 
    60  
    61         # the terminal window can be opened and the user *must* see 
    62         # this window 
    63         dialog.set_keep_above(True) 
    6460 
    6561        # images 
     
    917913        box.show() 
    918914 
     915        pagenum = self.notebook.page_num(box) 
    919916        last_added = len(self.term_list) 
    920917        self.term_list.append(box.terminal) 
     
    933930        bnt.connect('button-press-event', self.show_tab_menu) 
    934931        bnt.connect('clicked', lambda *x: 
    935                         self.notebook.set_current_page(self.notebook.page_num(box))) 
     932                        self.notebook.set_current_page(pagenum)) 
    936933        bnt.show() 
    937934