diff options
author | raveit65 <[email protected]> | 2017-05-08 19:49:42 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-05-28 09:52:32 +0200 |
commit | d3eb027cee37bbf16a5f5f608d4aea37cbe385dd (patch) | |
tree | 58ea25640dd969a6e8f4df6c63263954d38b2f29 /libslab/app-shell.c | |
parent | 092843c1fb4295025ead4008f9463df70dd9328b (diff) | |
download | mate-control-center-d3eb027cee37bbf16a5f5f608d4aea37cbe385dd.tar.bz2 mate-control-center-d3eb027cee37bbf16a5f5f608d4aea37cbe385dd.tar.xz |
libslab shellwindow: replace GtkAlignment with a GtkBox
The scrolledwindow child needs to be vertical expand in this case.
Diffstat (limited to 'libslab/app-shell.c')
-rw-r--r-- | libslab/app-shell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libslab/app-shell.c b/libslab/app-shell.c index dd14a978..c71b7f5b 100644 --- a/libslab/app-shell.c +++ b/libslab/app-shell.c @@ -277,6 +277,7 @@ layout_shell (AppShellData * app_data, const gchar * filter_title, const gchar * app_resizer_new (GTK_BOX (right_vbox), num_cols, TRUE, app_data); sw = gtk_scrolled_window_new (NULL, NULL); + gtk_widget_set_vexpand (GTK_WIDGET (sw), TRUE); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_IN); |