summaryrefslogtreecommitdiff
path: root/ui/triple_splitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/triple_splitter.cpp')
-rw-r--r--ui/triple_splitter.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/triple_splitter.cpp b/ui/triple_splitter.cpp
index 8132fd13..f6ef006d 100644
--- a/ui/triple_splitter.cpp
+++ b/ui/triple_splitter.cpp
@@ -198,8 +198,12 @@ void TripleSplitter::onMouseMovement(wxMouseEvent& event)
}
else
{
- //we receive those only while above the sash, not the managed windows!
- SetCursor(wxCURSOR_SIZEWE); //set window-local only!
+ //we receive those only while above the sash, not the managed windows (except when the managed windows are disabled!)
+ const int posX = event.GetPosition().x;
+ if (hitOnSashLine(posX))
+ SetCursor(wxCURSOR_SIZEWE); //set window-local only!
+ else
+ SetCursor(*wxSTANDARD_CURSOR);
}
event.Skip();
}
bgstack15