diff options
author | nyamatongwe <unknown> | 2000-11-01 04:57:49 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-11-01 04:57:49 +0000 |
commit | 5aea253e5bc2a11a74f4872e24d7bb9b08649414 (patch) | |
tree | 6805c0ed22bbbe5f3903d6735dadf2a8b6611f01 | |
parent | 6a6fde901d11a1b6116746c79f922f4c4cd519ba (diff) | |
download | scintilla-mirror-5aea253e5bc2a11a74f4872e24d7bb9b08649414.tar.gz |
Updated initial size to be 1000x1000.
-rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 46bffeb72..2dd35be7e 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -543,8 +543,8 @@ bool Window::HasFocus() { } PRectangle Window::GetPosition() { - // Before any size allocated pretend its 100 wide so not scrolled - PRectangle rc(0, 0, 100, 100); + // Before any size allocated pretend its 1000 wide so not scrolled + PRectangle rc(0, 0, 1000, 1000); if (id) { rc.left = id->allocation.x; rc.top = id->allocation.y; |