use custom i-beam cursor for range mode

git-svn-id: svn://localhost/ardour2/branches/3.0@11386 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-01-30 15:44:20 +00:00
parent b3b28e82b5
commit 44dcf6945b
1 changed files with 5 additions and 1 deletions

View File

@ -169,7 +169,11 @@ MouseCursors::MouseCursors ()
expand_up_down = new Cursor (Display::get_default(), p, 4, 11);
}
selector = new Cursor (XTERM);
{
RefPtr<Pixbuf> p (::get_icon ("i_beam_cursor"));
selector = new Cursor (Display::get_default(), p, 4, 11);
}
time_fx = new Cursor (SIZING);
wait = new Cursor (WATCH);
timebar = new Cursor(LEFT_PTR);