diff src/DLD-FUNCTIONS/fltk_backend.cc @ 8268:738c5d74fcfc

fltk_backend.cc (figure_manager::default_size): increase default window size
author John W. Eaton <jwe@octave.org>
date Wed, 22 Oct 2008 22:06:36 -0400
parents f2f1d07a7f0f
children 5a2e45facabe
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/fltk_backend.cc
+++ b/src/DLD-FUNCTIONS/fltk_backend.cc
@@ -668,12 +668,13 @@
     return sz;
   }
 
+  // FIXME -- default size should be configurable.
   void default_size (int& x, int& y, int& w, int& h)
   {
-    x = 10;
-    y = 10;
-    w = 400;
-    h = 300;
+    x = 0;
+    y = 0;
+    w = 640;
+    h = 480;
   }
 
   static int str2idx (const caseless_str clstr)