You need to sign in or sign up before continuing.
Commit 8a2afc1b authored by Victor Ananjevsky's avatar Victor Ananjevsky

don't expand entry widget

parent a24a8331
......@@ -317,7 +317,12 @@ create_layout (GtkWidget *dlg)
gtk_box_pack_start (GTK_BOX (layout), box, FALSE, FALSE, 0);
if (imw)
gtk_box_pack_start (GTK_BOX (layout), imw, TRUE, TRUE, 0);
{
if (options.mode == YAD_MODE_ENTRY)
gtk_box_pack_start (GTK_BOX (layout), imw, TRUE, FALSE, 0);
else
gtk_box_pack_start (GTK_BOX (layout), imw, TRUE, TRUE, 0);
}
if (options.mode == YAD_MODE_DND)
dnd_init (layout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment