diff options
Diffstat (limited to 'scintilla/src/Selection.cxx')
-rw-r--r-- | scintilla/src/Selection.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scintilla/src/Selection.cxx b/scintilla/src/Selection.cxx index fcc7d38..6465aae 100644 --- a/scintilla/src/Selection.cxx +++ b/scintilla/src/Selection.cxx @@ -230,6 +230,14 @@ SelectionRange &Selection::RangeMain() { return ranges[mainRange];
}
+SelectionPosition Selection::Start() const {
+ if (IsRectangular()) {
+ return rangeRectangular.Start();
+ } else {
+ return ranges[mainRange].Start();
+ }
+}
+
bool Selection::MoveExtends() const {
return moveExtends;
}
|