changeset 19930:90299974feda

Change default uipanel "position" for compatibility with Matlab (bug #44411) * graphics.cc (default_panel_position): change to default position to [0 0 1 1]
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Tue, 03 Mar 2015 19:29:14 +0100
parents ac18e88ea1bf
children 0e0a3bbe142f
files libinterp/corefcn/graphics.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/graphics.cc	Tue Mar 03 12:38:41 2015 -0500
+++ b/libinterp/corefcn/graphics.cc	Tue Mar 03 19:29:14 2015 +0100
@@ -453,8 +453,8 @@
 
   retval(0) = 0;
   retval(1) = 0;
-  retval(2) = 0.5;
-  retval(3) = 0.5;
+  retval(2) = 1;
+  retval(3) = 1;
 
   return retval;
 }