diff options
author | nyamatongwe <unknown> | 2004-08-12 22:51:32 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-08-12 22:51:32 +0000 |
commit | 65548a49e401c4e5ff2d706323640dbce195eb71 (patch) | |
tree | d554b85e210369d96a4de08bf73aa0b7d1003e29 /src | |
parent | 1e35215f948184f47e4abcc36d7245fc8f413bc0 (diff) | |
download | scintilla-mirror-65548a49e401c4e5ff2d706323640dbce195eb71.tar.gz |
Fixed hotspot double click bug caused by automatic construction of
a Point from a position.
Diffstat (limited to 'src')
-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 0ef69d1bf..399e65976 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4941,7 +4941,7 @@ void Editor::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, b //Platform::DebugPrintf("Double click: %d - %d\n", anchor, currentPos); if (doubleClick) { NotifyDoubleClick(pt, shift); - if (PointIsHotspot(newPos)) + if (PositionIsHotspot(newPos)) NotifyHotSpotDoubleClicked(newPos, shift, ctrl, alt); } } else { // Single click |