aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r--cocoa/ScintillaCocoa.mm10
1 files changed, 0 insertions, 10 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm
index 8a31b40d3..fa361df01 100644
--- a/cocoa/ScintillaCocoa.mm
+++ b/cocoa/ScintillaCocoa.mm
@@ -1470,16 +1470,6 @@ bool ScintillaCocoa::GetPasteboardData(NSPasteboard* board, SelectionText* selec
void ScintillaCocoa::SetMouseCapture(bool on)
{
capturedMouse = on;
- /*
- if (mouseDownCaptures)
- {
- if (capturedMouse)
- WndProc(SCI_SETCURSOR, Window::cursorArrow, 0);
- else
- // Reset to normal. Actual image will be set on mouse move.
- WndProc(SCI_SETCURSOR, (unsigned int) SC_CURSORNORMAL, 0);
- }
- */
}
//--------------------------------------------------------------------------------------------------