Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgconfig: fix bug where the window grows wider automatically

The window grew wider automatically as we move around the options.
This fix also allows user to resize (shrink) the window horizontally.

Fixed #116

Changeset 74a85e9fbf9f

Parent 8860bf5e7086

by TK Soh

Changes to one file · Browse files at 74a85e9fbf9f Showing diff from parent 8860bf5e7086 Diff from another changeset...

 
442
443
444
445
 
446
447
448
 
442
443
444
 
445
446
447
448
@@ -442,7 +442,7 @@
  desctext.set_wrap_mode(gtk.WRAP_WORD)   desctext.set_editable(False)   scrolledwindow = gtk.ScrolledWindow() - scrolledwindow.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) + scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)   scrolledwindow.add(desctext)   descframe.add(scrolledwindow)