app: return TRUE after handling double and triple click tool events

so we don't redundantly update the cursor again.
This commit is contained in:
Michael Natterer 2011-03-31 10:21:55 +02:00
parent 46931ec0d4
commit e4daf561ac
1 changed files with 4 additions and 2 deletions

View File

@ -637,7 +637,8 @@ gimp_display_shell_canvas_tool_events (GtkWidget *canvas,
display);
}
return_val = TRUE;
/* don't update the cursor again on double click */
return TRUE;
}
break;
@ -663,7 +664,8 @@ gimp_display_shell_canvas_tool_events (GtkWidget *canvas,
display);
}
return_val = TRUE;
/* don't update the cursor again on triple click */
return TRUE;
}
break;