aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-08-16 13:13:35 +0000
committernyamatongwe <devnull@localhost>2007-08-16 13:13:35 +0000
commit9232b666f1de9bbdf15bbf7e03edb8869110db2b (patch)
tree30913d82bd9e13a404602661029660ceebde440a /src
parent9f3cfb2b192f1b97aa3b223cad981a390edc4334 (diff)
downloadscintilla-mirror-9232b666f1de9bbdf15bbf7e03edb8869110db2b.tar.gz
Make selection of first or second character on line work with a selection
foreground set.
Diffstat (limited to 'src')
-rw-r--r--src/PositionCache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx
index 5bdafc27e..1763b6530 100644
--- a/src/PositionCache.cxx
+++ b/src/PositionCache.cxx
@@ -126,7 +126,7 @@ int LineLayout::LineLastVisible(int line) const {
}
bool LineLayout::InLine(int offset, int line) const {
- return ((offset >= LineStart(line)) && (offset < LineStart(line + 1)) ||
+ return ((offset >= LineStart(line)) && (offset < LineStart(line + 1)) ||
((offset == numCharsInLine) && (line == (lines-1))));
}
@@ -345,7 +345,7 @@ void LineLayoutCache::Dispose(LineLayout *ll) {
}
void BreakFinder::Insert(int val) {
- if (val > nextBreak) {
+ if (val >= nextBreak) {
for (unsigned int j = 0; j<saeLen; j++) {
if (val == selAndEdge[j]) {
return;