Merge pull request #504 from Pan7/FixMisText

Fix missing text field
This commit is contained in:
Timothee "TTimo" Besset 2017-05-27 16:08:15 -05:00 committed by GitHub
commit 8536330197

View file

@ -155,7 +155,9 @@ static void DoProjectAddEdit( bool edit, GtkWidget *parent ){
gtk_widget_show( label );
text = gtk_entry_new();
g_object_set_data( G_OBJECT( dialog ), "text", text );
gtk_table_attach( GTK_TABLE( table ), text, 1, 2, 0, 1,
(GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
(GtkAttachOptions) ( 0 ), 0, 0 );
gtk_widget_show( text );
g_object_set_data( G_OBJECT( dialog ), "text", text );