diff options
| author | nyamatongwe <unknown> | 2007-06-29 03:55:53 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2007-06-29 03:55:53 +0000 | 
| commit | 5d0a36994667e3f07d3798a9611df7e6b67c7559 (patch) | |
| tree | 81b0e14f6f5d707d61638418bd9472f421c85114 /src | |
| parent | 4c4d6eedb22bb6963120bcb77f5321f96759a074 (diff) | |
| download | scintilla-mirror-5d0a36994667e3f07d3798a9611df7e6b67c7559.tar.gz | |
Removed OS X specific WaitMouseMoved call since the generic code no longer
starts a drag unless the mouse moves.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Editor.cxx | 8 | 
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 51c79bc15..b7fa63e22 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5102,14 +5102,6 @@ void Editor::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, b  				else  					inDragDrop = ddNone;  			} -#ifdef __APPLE__ -			// we need to additionaly check if the mouse moved before we -			// decide that we can in fact start a drag session.  Currently -			// only OSX will return anything but true. -			if (inDragDrop == ddInitial && !Platform::WaitMouseMoved(pt)) { -				inDragDrop = ddNone; -			} -#endif  			SetMouseCapture(true);  			if (inDragDrop != ddInitial) {  				SetDragPosition(invalidPosition);  | 
