diff options
-rw-r--r-- | doc/ScintillaHistory.html | 13 | ||||
-rw-r--r-- | src/ScintillaBase.cxx | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 4401473f3..6ee87dc4e 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -582,6 +582,19 @@ </table> <h2>Releases</h2> <h3> + <a href="https://www.scintilla.org/scintilla536.zip">Release 5.3.6</a> + </h3> + <ul> + <li> + Released 31 May 2023. + </li> + <li> + Redraw calltip after showing as didn't update when size of new text exactly same as + previous. + <a href="https://sourceforge.net/p/scintilla/feature-requests/1486/">Feature #1486</a>. + </li> + </ul> + <h3> <a href="https://www.scintilla.org/scintilla535.zip">Release 5.3.5</a> </h3> <ul> diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 489079a86..9d0c79c06 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -515,6 +515,7 @@ void ScintillaBase::CallTipShow(Point pt, const char *defn) { CreateCallTipWindow(rc); ct.wCallTip.SetPositionRelative(rc, &wMain); ct.wCallTip.Show(); + ct.wCallTip.InvalidateAll(); } void ScintillaBase::CallTipClick() { |