diff options
| author | nyamatongwe <unknown> | 2005-06-03 23:11:04 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2005-06-03 23:11:04 +0000 | 
| commit | 472a353e0f4d933ffaa745b4ef626855c50258fb (patch) | |
| tree | d75101c07bc9ecfa3feeda46f3edd278f0aa7211 /src | |
| parent | e01e381431f57574177c75906afda495aca40c91 (diff) | |
| download | scintilla-mirror-472a353e0f4d933ffaa745b4ef626855c50258fb.tar.gz | |
Fixed bug 1214067 Alt+Shift+Click not displaying rectangular selection
fully by setting rectangular range in mouse down processing. Hoisted this
code into new method SetRectangularRange as used in 4 places.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Editor.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/Editor.h b/src/Editor.h index 71953c298..e69778ab7 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -350,6 +350,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	bool SelectionEmpty();  	int SelectionStart();  	int SelectionEnd(); +	void SetRectangularRange();  	void InvalidateSelection(int currentPos_, int anchor_);  	void SetSelection(int currentPos_, int anchor_);  	void SetSelection(int currentPos_); | 
