summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/pane.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-28 10:29:47 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:45 -0400
commit47b85c3845cb6597d115d71cdb1a04838dc6f37a (patch)
treee16326f9763839f4cce73c85333262d8976036d8 /libs/gtkmm2ext/pane.cc
parent4ef8e862b3610052410fbdd63355b48d267638b5 (diff)
fix default pane divider cursor for vertical panes
Diffstat (limited to 'libs/gtkmm2ext/pane.cc')
-rw-r--r--libs/gtkmm2ext/pane.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/pane.cc b/libs/gtkmm2ext/pane.cc
index 9d5dbc005d..a9920f877e 100644
--- a/libs/gtkmm2ext/pane.cc
+++ b/libs/gtkmm2ext/pane.cc
@@ -40,7 +40,7 @@ Pane::Pane (bool h)
if (horizontal) {
drag_cursor = Cursor (SB_H_DOUBLE_ARROW);
} else {
- drag_cursor = Cursor (SB_H_DOUBLE_ARROW);
+ drag_cursor = Cursor (SB_V_DOUBLE_ARROW);
}
}