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

stable repoview: Fixed issue where stored width was being ignored

Changeset 1c627aeb3590

Parent 469eb69b2546

by Michael De Wildt

Changes to one file · Browse files at 1c627aeb3590 Showing diff from parent 469eb69b2546 Diff from another changeset...

 
251
252
253
254
 
 
 
 
255
256
257
 
251
252
253
 
254
255
256
257
258
259
260
@@ -251,7 +251,10 @@
  # is re-sized according to the total widget size.   key = '%s/widget_width' % self.cfgname   widget_width, ok = QSettings().value(key).toInt() - if self.resized and ok and widget_width: + if not ok: + widget_width = 0 + + if self.resized:   model = self.model()   vp_width = self.viewport().width()   total_width = stretch_col = 0