Changeset 268dbf8a46c578956e1ee586723bed4b7c142fbf

Show
Ignore:
Timestamp:
06/03/08 00:13:40 (4 years ago)
Author:
Lincoln de Sousa <lincoln@…>
Children:
937756028fc7ba368d5666e286014a8c30c62ada
Parents:
dff44dc7a1cf4f6e84edd66e40bb174c50e22902
git-author:
Gabriel Falcao <root@…> (05/28/08 02:35:07)
git-committer:
Lincoln de Sousa <lincoln@…> (06/03/08 00:13:40)
Message:

Fixing a bug related with scrollbar preferences. Thanks to SteveD for sending the patch. closes #3

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r512b8d8 r268dbf8  
     12008-05-28  Gabriel Falcão <gabriel@nacaolivre.org> 
     2 
     3        * src/guake.py: Applied patch from SteveD <dashdot@f-m.fm> that fixes the 
     4        bug of scrollbars, ticket #3. 
     5 
    162007-11-26  Lincoln de Sousa  <lincoln@minaslivre.org> 
    27 
  • src/guake.py

    r512b8d8 r268dbf8  
    431431        self.load_config() 
    432432        self.load_accelerators() 
    433         self.toggle_scrollbars() 
     433        # self.toggle_scrollbars() 
    434434        self.refresh() 
    435435        self.add_tab() 
     
    716716        adj = self.term_list[last_added].get_adjustment() 
    717717        scroll = gtk.VScrollbar(adj) 
    718         scroll.set_no_show_all(True) 
     718        use_scrollbar = self.client.get_bool(GCONF_PATH+'general/use_scrollbar') 
     719        if not use_scrollbar: 
     720            scroll.set_no_show_all(True) 
    719721        mhbox.pack_start(scroll, False, False) 
    720722