# HG changeset patch # User Pantxo Diribarne # Date 1425407354 -3600 # Node ID 90299974feda87dabb86499a0bab4a8c45ebee51 # Parent ac18e88ea1bf5efdeb591c4d917d32d13419c8e0 Change default uipanel "position" for compatibility with Matlab (bug #44411) * graphics.cc (default_panel_position): change to default position to [0 0 1 1] diff -r ac18e88ea1bf -r 90299974feda libinterp/corefcn/graphics.cc --- 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; }