aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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;