diff options
author | nyamatongwe <unknown> | 2004-02-20 09:05:24 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-02-20 09:05:24 +0000 |
commit | fe39150e12fb78d22d9a993f3b3549652e04e2c5 (patch) | |
tree | de1b7155368b1ad12e59ee09957113ea0913bb41 | |
parent | 89d27f05242f9a58807f4dee9cf371a66dd298f7 (diff) | |
download | scintilla-mirror-fe39150e12fb78d22d9a993f3b3549652e04e2c5.tar.gz |
Patch from John Ehresman to fix sizing problems when Scintilla
embedded in a notebook.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index e209a15ab..8c2f5c6ea 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -454,6 +454,7 @@ void ScintillaGTK::MapThis() { wMain.SetCursor(Window::cursorArrow); scrollbarv.SetCursor(Window::cursorArrow); scrollbarh.SetCursor(Window::cursorArrow); + ChangeSize(); gdk_window_show(PWidget(wMain)->window); } |