diff options
Diffstat (limited to 'tools/perf/scripts/python')
-rw-r--r-- | tools/perf/scripts/python/call-graph-from-sql.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/scripts/python/call-graph-from-sql.py b/tools/perf/scripts/python/call-graph-from-sql.py index ce1b91fcd6b8..e1014f2628a7 100644 --- a/tools/perf/scripts/python/call-graph-from-sql.py +++ b/tools/perf/scripts/python/call-graph-from-sql.py | |||
@@ -280,6 +280,9 @@ class MainWindow(QMainWindow): | |||
280 | self.view = QTreeView() | 280 | self.view = QTreeView() |
281 | self.view.setModel(self.model) | 281 | self.view.setModel(self.model) |
282 | 282 | ||
283 | for c, w in ((0, 250), (1, 100), (2, 60), (3, 70), (4, 70), (5, 100)): | ||
284 | self.view.setColumnWidth(c, w) | ||
285 | |||
283 | self.setCentralWidget(self.view) | 286 | self.setCentralWidget(self.view) |
284 | 287 | ||
285 | if __name__ == '__main__': | 288 | if __name__ == '__main__': |