From b7514aab3d702cffd61b17be5acd2478ad811d45 Mon Sep 17 00:00:00 2001 From: infirit Date: Fri, 19 Dec 2014 00:47:43 +0100 Subject: Slightly increase width of memory map dialog from 575 to 620 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/memmaps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- cgit v1.2.1