Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable repoview: Increase the minimum size of the Description column (closes #156)

The issue #156 states that the description column does not properly autoresize.
This patch does not fix that but it makes the default size of the description
column bigger, which makes the issue less annoying.

I increased the size from 100 to 600. If 600 is too much we could use 400
instead.

Changeset 7bd689035bf9

Parent 37bb954d6916

by Angel Ezquerra

Changes to one file · Browse files at 7bd689035bf9 Showing diff from parent 37bb954d6916 Diff from another changeset...

 
129
130
131
132
 
133
134
135
 
129
130
131
 
132
133
134
135
@@ -129,7 +129,7 @@
  w = self.sizeHintForColumn(c)   self.setColumnWidth(c, w)   col1_width -= self.columnWidth(c) - col1_width = max(col1_width, 100) + col1_width = max(col1_width, 600)   for c in range(model.columnCount(QModelIndex())):   if model._columns[c] in model._stretchs:   w = model._stretchs[model._columns[c]] / tot_stretch