diff options
author | nyamatongwe <unknown> | 2003-12-14 03:17:29 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-12-14 03:17:29 +0000 |
commit | 5e37d6edaefda8b8e5f9fe98d26e0b57262a222b (patch) | |
tree | 0ddcde6da64b1116135cef35c9682dc2989fa65e | |
parent | e37826bb715cdee113202f925d65a78560dd2bff (diff) | |
download | scintilla-mirror-5e37d6edaefda8b8e5f9fe98d26e0b57262a222b.tar.gz |
Patch from John Ehresman to fix hotspot crash.
-rw-r--r-- | src/Editor.cxx | 2 |
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) { |