mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Prevent users from deleting the classname key in entity dialog
Disables the Del Key/Val Pair button if the classname key is selected.
This commit is contained in:
parent
5622d0b02b
commit
c58db111c0
1 changed files with 4 additions and 0 deletions
|
@ -1085,6 +1085,10 @@ static void proplist_selection_changed( GtkTreeSelection* selection, gpointer da
|
|||
char* val;
|
||||
gtk_tree_model_get( model, &iter, 0, &key, 1, &val, -1 );
|
||||
|
||||
if ( stricmp( key, "classname" ) == 0 ) {
|
||||
gtk_widget_set_sensitive( del_button, FALSE );
|
||||
}
|
||||
|
||||
gtk_entry_set_text( GTK_ENTRY( EntWidgets[EntKeyField] ), key );
|
||||
gtk_entry_set_text( GTK_ENTRY( EntWidgets[EntValueField] ), val );
|
||||
|
||||
|
|
Loading…
Reference in a new issue