aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-12-14 03:17:29 +0000
committernyamatongwe <unknown>2003-12-14 03:17:29 +0000
commit5e37d6edaefda8b8e5f9fe98d26e0b57262a222b (patch)
tree0ddcde6da64b1116135cef35c9682dc2989fa65e /src
parente37826bb715cdee113202f925d65a78560dd2bff (diff)
downloadscintilla-mirror-5e37d6edaefda8b8e5f9fe98d26e0b57262a222b.tar.gz
Patch from John Ehresman to fix hotspot crash.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 9b7522550..9878182c2 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4835,7 +4835,7 @@ void Editor::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, b
}
bool Editor::PositionIsHotspot(int position) {
- return vs.styles[pdoc->StyleAt(position)].hotspot;
+ return vs.styles[pdoc->StyleAt(position) & pdoc->stylingBitsMask].hotspot;
}
bool Editor::PointIsHotspot(Point pt) {