mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fix missing text field
This commit is contained in:
parent
422cd9d40f
commit
24be19bf0d
1 changed files with 3 additions and 1 deletions
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue