Cursor tweaks

git-svn-id: http://svn.drobilla.net/lad@75 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-06-22 05:53:53 +00:00
parent f12a33ee18
commit b7a45c7510
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ public:
protected:
bool module_event(GdkEvent* event);
virtual void on_double_click(GdkEventButton* ev) {}
virtual void on_middle_click(GdkEventButton* ev) {}
virtual void on_right_click(GdkEventButton* ev) {}

View File

@ -73,7 +73,7 @@ FlowCanvas::on_map()
{
Gnome::Canvas::Canvas::on_map();
assert(get_window());
get_window()->set_cursor(Gdk::Cursor(Gdk::HAND2));
get_window()->set_cursor(Gdk::Cursor(Gdk::HAND1));
}
@ -802,7 +802,7 @@ FlowCanvas::connection_drag_handler(GdkEvent* event)
drag_port->rect()->property_y2() = p->rect()->property_y2().get_value();
} else {
drag_module->property_x() = x;
drag_module->property_y() = y;
drag_module->property_y() = y - 7; // FIXME: s#7#cursor_height/2#
}
drag_connection->update_location();
}