diff options
author | mbkma <[email protected]> | 2020-04-13 22:01:48 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-26 17:25:40 +0200 |
commit | 4991bbc0cb581288c26fabea9c746a583d4c08ba (patch) | |
tree | 283a3ead6612aa1a8d469eb0e68db524b1795181 | |
parent | ff907379333d135c0d1fd72d78535a830b7bbc9b (diff) | |
download | pluma-4991bbc0cb581288c26fabea9c746a583d4c08ba.tar.bz2 pluma-4991bbc0cb581288c26fabea9c746a583d4c08ba.tar.xz |
pluma.c: set PlumaWindow size-request (min-size) to 250x250
-rw-r--r-- | pluma/pluma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pluma/pluma.c b/pluma/pluma.c index 99542b65..e0f46e0f 100644 --- a/pluma/pluma.c +++ b/pluma/pluma.c @@ -619,6 +619,7 @@ main (int argc, char *argv[]) pluma_debug_message (DEBUG_APP, "Create main window"); window = pluma_app_create_window (app, NULL); + gtk_widget_set_size_request (GTK_WIDGET (window), 250, 250); if (file_list != NULL) { |