* app/widgets/gimpdataeditor.c: make Revert button insensitive
	because revert is not yet implemented (bug #152259).
This commit is contained in:
William Skaggs
2004-12-12 18:26:16 +00:00
parent 734265ee59
commit 578c0c4f0a
2 changed files with 9 additions and 0 deletions

View File

@ -214,6 +214,10 @@ gimp_data_editor_constructor (GType type,
G_CALLBACK (gimp_data_editor_revert_clicked),
NULL,
editor);
/*
* Set insensitive because revert buttons are not yet implemented.
*/
gtk_widget_set_sensitive (editor->revert_button, FALSE);
return object;
}