summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2018-03-11 17:07:19 +0000
committerEduard Braun <eduard.braun2@gmx.de>2018-03-12 18:28:38 +0000
commit6330e31b8af6e8939d8f450d89b2e11104ba8ff8 (patch)
tree16878be5679f4d0234c46f6ba57cdc2257456070 /src
parentAllow to constrain InkSpinScale slider values by pressing Ctrl key (diff)
downloadinkscape-6330e31b8af6e8939d8f450d89b2e11104ba8ff8.tar.gz
inkscape-6330e31b8af6e8939d8f450d89b2e11104ba8ff8.zip
Use upward pointing arrow cursor in InkSpinScale
Downward pointing cursors are confusing. Also this restores consistency with the replaced GimpSpinScale.
Diffstat (limited to 'src')
-rw-r--r--src/ui/widget/ink-spinscale.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widget/ink-spinscale.cpp b/src/ui/widget/ink-spinscale.cpp
index 711dcfaa4..87a2bd11c 100644
--- a/src/ui/widget/ink-spinscale.cpp
+++ b/src/ui/widget/ink-spinscale.cpp
@@ -137,7 +137,7 @@ InkScale::on_motion_notify_event(GdkEventMotion* motion_event) {
if (! (motion_event->state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | GDK_BUTTON3_MASK))) {
auto display = get_display();
- auto cursor = Gdk::Cursor::create(display, Gdk::SB_DOWN_ARROW);
+ auto cursor = Gdk::Cursor::create(display, Gdk::SB_UP_ARROW);
// Get Gdk::window (not Gtk::window).. set cursor for entire window.
// Would need to unset with leave event.
// get_window()->set_cursor( cursor );