diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-18 10:18:23 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-18 10:18:23 +0100 |
commit | 185b6a07cd9d344063a14fe0981f7ada1d530ed9 (patch) | |
tree | 3f245b892f5d9b2dade7a195eac724bd4787670c | |
parent | 7c273bd13e337b4e44cee3bd91f3e2868a613dbe (diff) |
gui/process-editor: nix scrollbar
-rw-r--r-- | gui/process-detector-fancy-table.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/process-detector-fancy-table.cpp b/gui/process-detector-fancy-table.cpp index c5f15587..ad6a75cc 100644 --- a/gui/process-detector-fancy-table.cpp +++ b/gui/process-detector-fancy-table.cpp @@ -7,7 +7,7 @@ void FancyTable::resizeEvent(QResizeEvent* e) QTableView::resizeEvent(e); int w = width(); setColumnWidth(2, 32); - w -= 40; + w -= 64; setColumnWidth(0, w / 2); setColumnWidth(1, w / 2); horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed); |