Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

repoview: convert to Python string if it's QString

Changeset 19f2e869e093

Parent fea1e7648084

by Yuki KODAMA

Changes to one file · Browse files at 19f2e869e093 Showing diff from parent fea1e7648084 Diff from another changeset...

 
210
211
212
213
 
214
215
216
 
210
211
212
 
213
214
215
216
@@ -210,7 +210,7 @@
  if isinstance(w, int):   self.setColumnWidth(c, w)   elif w is not None: - w = fontm.width(hglib.tounicode(w) + 'w') + w = fontm.width(hglib.tounicode(str(w)) + 'w')   self.setColumnWidth(c, w)   else:   w = self.sizeHintForColumn(c)