summaryrefslogtreecommitdiff
path: root/settings
diff options
context:
space:
mode:
authorAndre Miranda <andreldm@xfce.org>2019-04-23 22:26:02 -0300
committerAndre Miranda <andreldm@xfce.org>2019-04-23 22:26:02 -0300
commit9b70555db598ce66cf313df63720d6ccd6b95cf9 (patch)
tree7ec2b62dbde3ae2d88518e7a1513499f815611e4 /settings
parentc35e24628f72c8e61c6bcc117156f3832f2ad7a9 (diff)
downloadxfce4-session-9b70555db598ce66cf313df63720d6ccd6b95cf9.tar.gz
Make entries expand in add/edit app startup dialog (Bug #15321)
Diffstat (limited to 'settings')
-rw-r--r--settings/xfae-dialog.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/xfae-dialog.c b/settings/xfae-dialog.c
index 4e3708f5..d6476573 100644
--- a/settings/xfae-dialog.c
+++ b/settings/xfae-dialog.c
@@ -95,6 +95,7 @@ xfae_dialog_init (XfaeDialog *dialog)
dialog->name_entry = g_object_new (GTK_TYPE_ENTRY,
"activates-default", TRUE,
+ "hexpand", TRUE,
NULL);
gtk_grid_attach (GTK_GRID (grid), dialog->name_entry, 1, 0, 1, 1);
@@ -109,6 +110,7 @@ xfae_dialog_init (XfaeDialog *dialog)
dialog->descr_entry = g_object_new (GTK_TYPE_ENTRY,
"activates-default", TRUE,
+ "hexpand", TRUE,
NULL);
gtk_grid_attach (GTK_GRID (grid), dialog->descr_entry, 1, 1, 1, 1);
gtk_widget_show (dialog->descr_entry);
@@ -128,6 +130,7 @@ xfae_dialog_init (XfaeDialog *dialog)
dialog->command_entry = g_object_new (GTK_TYPE_ENTRY,
"activates-default", TRUE,
+ "hexpand", TRUE,
NULL);
gtk_box_pack_start (GTK_BOX (hbox), dialog->command_entry, TRUE, TRUE, 0);