Skip to content

Commit dc7c535

Browse files
gtkui: fix zero-height property editor window in gtk2
1 parent ae62abb commit dc7c535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/gtkui/scriptable/gtkScriptablePropertySheetEditWindowController.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ gtkScriptablePropertySheetEditWindowControllerNew (void) {
6161
gtkScriptablePropertySheetEditWindowController_t *self = calloc (1, sizeof (gtkScriptablePropertySheetEditWindowController_t));
6262

6363
GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
64-
gtk_widget_set_size_request(window, 400, 0);
64+
gtk_widget_set_size_request(window, 400, -1);
6565

6666
self->window = window;
6767
g_object_ref (window);

0 commit comments

Comments
 (0)