Small Patch Inspector fix

This commit is contained in:
Pan7 2015-09-29 00:56:18 +02:00
parent 930bd66b87
commit 6ab9b6b8c8

View file

@ -2912,11 +2912,11 @@ int DoTextureLayout( float *fx, float *fy ){
gtk_widget_show( label );
x = gtk_entry_new();
gtk_grid_attach( GTK_GRID( table ), label, 1, 0, 1, 1 );
gtk_grid_attach( GTK_GRID( table ), x, 1, 0, 1, 1 );
gtk_widget_show( x );
y = gtk_entry_new();
gtk_grid_attach( GTK_GRID( table ), label, 1, 1, 1, 1 );
gtk_grid_attach( GTK_GRID( table ), y, 1, 1, 1, 1 );
gtk_widget_show( y );