mirror of https://github.com/GNOME/gimp.git
ignore double clicks on toggle cells (fixes bug #109114).
2003-03-25 Michael Natterer <mitch@gimp.org> * app/widgets/gimpcontainertreeview.c (gimp_container_tree_view_button_press): ignore double clicks on toggle cells (fixes bug #109114).
This commit is contained in:
parent
d0e2755a34
commit
74887c8676
|
@ -1,3 +1,9 @@
|
|||
2003-03-25 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpcontainertreeview.c
|
||||
(gimp_container_tree_view_button_press): ignore double clicks on
|
||||
toggle cells (fixes bug #109114).
|
||||
|
||||
2003-03-24 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/widgets/gimpenummenu.[ch]: added new functions
|
||||
|
|
|
@ -815,7 +815,7 @@ gimp_container_tree_view_button_press (GtkWidget *widget,
|
|||
gtk_tree_view_set_cursor_on_cell (tree_view->view, path,
|
||||
column, edit_cell, TRUE);
|
||||
}
|
||||
else
|
||||
else if (! toggled_cell) /* ignore double click on toggles */
|
||||
{
|
||||
gimp_container_view_item_activated (container_view,
|
||||
renderer->viewable);
|
||||
|
|
Loading…
Reference in New Issue