diff options
author | nyamatongwe <devnull@localhost> | 2004-02-20 09:05:24 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-02-20 09:05:24 +0000 |
commit | 64d0b92945b616d7796f3fdf2f99d91aa38d70d9 (patch) | |
tree | de1b7155368b1ad12e59ee09957113ea0913bb41 | |
parent | 97c50a817ad26c9005dcc9318d8af3be78c66211 (diff) | |
download | scintilla-mirror-64d0b92945b616d7796f3fdf2f99d91aa38d70d9.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); } |