diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-23 15:28:33 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-01-23 15:28:33 +0100 |
commit | 65268c513aeb225cbd7a8b0e16c566191eb0fd01 (patch) | |
tree | a93ce517f27a7446c23be8c2219a6a1de5ebc54c /mate-dictionary/libgdict/gdict-strategy-chooser.c | |
parent | 0a6c93c71b6c1dd7151c929b9c9897c5b663a097 (diff) | |
download | mate-utils-65268c513aeb225cbd7a8b0e16c566191eb0fd01.tar.bz2 mate-utils-65268c513aeb225cbd7a8b0e16c566191eb0fd01.tar.xz |
GTK3: Expand scrolled windows
taken from:
https://git.gnome.org/browse/gnome-dictionary/commit/?h=gnome-3-8&id=f50f8b5
Diffstat (limited to 'mate-dictionary/libgdict/gdict-strategy-chooser.c')
-rw-r--r-- | mate-dictionary/libgdict/gdict-strategy-chooser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mate-dictionary/libgdict/gdict-strategy-chooser.c b/mate-dictionary/libgdict/gdict-strategy-chooser.c index d78ef1b4..e3190bc7 100644 --- a/mate-dictionary/libgdict/gdict-strategy-chooser.c +++ b/mate-dictionary/libgdict/gdict-strategy-chooser.c @@ -328,6 +328,9 @@ gdict_strategy_chooser_constructor (GType type, gtk_widget_push_composite_child (); sw = gtk_scrolled_window_new (NULL, NULL); +#if GTK_CHECK_VERSION (3, 0, 0) + gtk_widget_set_hexpand (sw, TRUE); +#endif gtk_widget_set_composite_name (sw, "gdict-strategy-chooser-scrolled-window"); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), GTK_POLICY_AUTOMATIC, |