Revert "do not allow canvas cursor changes while a drag is in progress". This

was a bad idea. There are lots of reasons to want to change cursors while
dragging, even if we don't do that yet.

This reverts commit 144033e55c.
This commit is contained in:
Paul Davis 2014-06-10 18:50:42 -04:00
parent 144033e55c
commit 22f45b5a78

View File

@ -880,12 +880,6 @@ Editor::horizontal_position () const
void
Editor::set_canvas_cursor (Gdk::Cursor* cursor, bool save)
{
/* do not allow cursors to change during a drag */
if (_drags->active()) {
return;
}
if (save) {
current_canvas_cursor = cursor;
}