Commit 42b4cc3f7069d86142d1bdbc2d730e7a88cdc544

Authored by Perry Werneck
1 parent 8cd89927
Exists in master and in 1 other branch develop

Disabling HTML color scheme dropdown in the clipboard settings dialog

since the feature is not yet implemented.
Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
src/dialogs/settings/clipboard.c
... ... @@ -485,6 +485,10 @@ static void load(GtkWidget *w, GtkWidget *t) {
485 485  
486 486 }
487 487  
  488 +#ifndef DEBUG
  489 + gtk_widget_set_sensitive(GTK_WIDGET(widget->input.combos[1]),FALSE);
  490 +#endif // DEBUG
  491 +
488 492 }
489 493  
490 494 static gchar get_active_id(V3270ClipboardSettings *widget, size_t combo) {
... ...