aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-11-01 04:57:49 +0000
committernyamatongwe <devnull@localhost>2000-11-01 04:57:49 +0000
commit4554f6f976b8253192e7600de2f51a9cf32726bb (patch)
tree6805c0ed22bbbe5f3903d6735dadf2a8b6611f01
parent816d84bf4a8bbc779274cfbb425c82cac8774a06 (diff)
downloadscintilla-mirror-4554f6f976b8253192e7600de2f51a9cf32726bb.tar.gz
Updated initial size to be 1000x1000.
-rw-r--r--gtk/PlatGTK.cxx4
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;