summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-19 00:47:43 +0100
committerinfirit <[email protected]>2014-12-19 00:48:54 +0100
commitb7514aab3d702cffd61b17be5acd2478ad811d45 (patch)
tree2d4e21940713ddc72a7d94751a1de286e85bdd34
parente39965fb74147b0c2f81420c1c9a512b881237d1 (diff)
downloadmate-system-monitor-b7514aab3d702cffd61b17be5acd2478ad811d45.tar.bz2
mate-system-monitor-b7514aab3d702cffd61b17be5acd2478ad811d45.tar.xz
Slightly increase width of memory map dialog from 575 to 620
Normally the memory map dialog needs to be quite wide. However, the minimum size of the main window is 626. Making a dialog wider than this by default would be odd. Thus, this is a large as the dialog will be by default even though it is not very useful at this width. Normally the memory map dialog needs to be quite wide Taken from GSM commit: 479794236f47aa69117576bdf4f9b80967744e7f From: Chris Kühl <[email protected]>
-rw-r--r--src/memmaps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memmaps.cpp b/src/memmaps.cpp
index 36b0340..a9939f3 100644
--- a/src/memmaps.cpp
+++ b/src/memmaps.cpp
@@ -469,7 +469,7 @@ create_single_memmaps_dialog (GtkTreeModel *model, GtkTreePath *path,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
NULL);
gtk_window_set_resizable(GTK_WINDOW(memmapsdialog), TRUE);
- gtk_window_set_default_size(GTK_WINDOW(memmapsdialog), 575, 400);
+ gtk_window_set_default_size(GTK_WINDOW(memmapsdialog), 620, 400);
gtk_container_set_border_width(GTK_CONTAINER(memmapsdialog), 5);
dialog_vbox = gtk_dialog_get_content_area (GTK_DIALOG(memmapsdialog));