Fix initial column size measurement
authorRené Stadler <mail@renestadler.de>
Thu, 22 Nov 2007 11:35:39 +0000 (13:35 +0200)
committerStefan Sauer <ensonic@users.sf.net>
Thu, 11 Sep 2014 18:51:39 +0000 (20:51 +0200)
debug-viewer/GstDebugViewer/GUI.py

index b68bbbc..e494e84 100755 (executable)
@@ -388,7 +388,8 @@ class TextColumn (SizedColumn):
         max_width = 0
         for value in values:
             cell.props.text = format (value)
-            max_width = max (max_width, cell.get_size (view, None)[2])
+            rect, x, y, w, h = self.view_column.cell_get_size ()
+            max_width = max (max_width, w)
 
         return max_width