summaryrefslogtreecommitdiffhomepage
path: root/gui/process-detector-fancy-table.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-11-05 12:48:23 +0100
committerStanislaw Halik <sthalik@misaki.pl>2016-11-05 13:05:55 +0100
commitdfa40a083dc3efaf665bc1f5e54633deda79a956 (patch)
tree6ddecdb6e3855f284890b39614c0761ff5a4b888 /gui/process-detector-fancy-table.cpp
parentb89699c7551f768bf4ff47820543f8c7b8c794af (diff)
gui: allow for process detector resize wrt logical layout
Diffstat (limited to 'gui/process-detector-fancy-table.cpp')
-rw-r--r--gui/process-detector-fancy-table.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/process-detector-fancy-table.cpp b/gui/process-detector-fancy-table.cpp
index af3aa830..c64428e5 100644
--- a/gui/process-detector-fancy-table.cpp
+++ b/gui/process-detector-fancy-table.cpp
@@ -5,7 +5,7 @@ void FancyTable::resizeEvent(QResizeEvent* e)
QTableView::resizeEvent(e);
int w = width();
setColumnWidth(2, 32);
- w -= 48;
+ w -= 40;
setColumnWidth(0, w / 2);
setColumnWidth(1, w / 2);
}