diff options
author | monsta <[email protected]> | 2015-11-26 17:50:34 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-11-30 12:24:03 +0300 |
commit | 9ab4c15c7ae1b1160d9a1d8a5879a46a0e5cd0c5 (patch) | |
tree | 142ed51e595d2391a7fff19f762e413fa86a1c9f /src/procman.cpp | |
parent | e03616c8b037170fafed8085d450bd6e8fcc722d (diff) | |
download | mate-system-monitor-9ab4c15c7ae1b1160d9a1d8a5879a46a0e5cd0c5.tar.bz2 mate-system-monitor-9ab4c15c7ae1b1160d9a1d8a5879a46a0e5cd0c5.tar.xz |
process table: set correct minimum width for all columns
Diffstat (limited to 'src/procman.cpp')
-rw-r--r-- | src/procman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/procman.cpp b/src/procman.cpp index 2171670..0491df9 100644 --- a/src/procman.cpp +++ b/src/procman.cpp @@ -430,7 +430,7 @@ procman_get_tree_state (GSettings *settings, GtkWidget *tree, const gchar *child gtk_tree_view_column_set_visible (column, visible); if (visible) { /* ensure column is really visible */ - width = MAX(width, 10); + width = MAX(width, 20); gtk_tree_view_column_set_fixed_width(column, width); } } |