diff options
author | infirit <[email protected]> | 2014-11-19 15:28:28 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-19 15:44:09 +0100 |
commit | c8ebc800a2f42915f8e67b55e3668c3e6cf232fd (patch) | |
tree | d021c4a6122cb83c5bbc586a5b48d23e871b6252 | |
parent | 541015ebe46c24af8433a65307517e0400e2abd6 (diff) | |
download | engrampa-c8ebc800a2f42915f8e67b55e3668c3e6cf232fd.tar.bz2 engrampa-c8ebc800a2f42915f8e67b55e3668c3e6cf232fd.tar.xz |
do not expand the extra widget in the 'new' dialog
Based on FR commit: 02e93b44321f6c9bdad5af1a0d4d9251b8456242
From: Paolo Bacchilega <[email protected]>
-rw-r--r-- | src/dlg-new.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dlg-new.c b/src/dlg-new.c index d160c06..c5ead16 100644 --- a/src/dlg-new.c +++ b/src/dlg-new.c @@ -374,6 +374,10 @@ dlg_new_archive (FrWindow *window, gtk_widget_show (GTK_WIDGET (data->format_chooser)); gtk_box_pack_start (GTK_BOX (GET_WIDGET ("format_chooser_box")), GTK_WIDGET (data->format_chooser), TRUE, TRUE, 0); +#if GTK_CHECK_VERSION (3, 0, 0) + gtk_widget_set_vexpand (GET_WIDGET ("extra_widget"), FALSE); +#endif + /* Set the signals handlers. */ /*g_signal_connect (G_OBJECT (data->dialog), |