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:
Ensiform 2017-06-16 21:21:49 -05:00
parent 5622d0b02b
commit c58db111c0
1 changed files with 4 additions and 0 deletions

View File

@ -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 );