diff options
author | nyamatongwe <devnull@localhost> | 2000-11-01 04:57:49 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-11-01 04:57:49 +0000 |
commit | 4554f6f976b8253192e7600de2f51a9cf32726bb (patch) | |
tree | 6805c0ed22bbbe5f3903d6735dadf2a8b6611f01 | |
parent | 816d84bf4a8bbc779274cfbb425c82cac8774a06 (diff) | |
download | scintilla-mirror-4554f6f976b8253192e7600de2f51a9cf32726bb.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; |