# HG changeset patch # User Rik # Date 1652287495 25200 # Node ID 63710f3bd9811c2d206ac9e7b4f47cf06c47e153 # Parent ed06f74e16cf4d5406c7919ceeed435158344c97 Stop incorrect error when reset() called on uimenu handle (bug #62425) * graphics.in.h (uimenu::properties::init): When setting constraint for "position" property allow mininimum to include 0. diff -r ed06f74e16cf -r 63710f3bd981 libinterp/corefcn/graphics.in.h --- a/libinterp/corefcn/graphics.in.h Mon May 09 12:57:11 2022 -0400 +++ b/libinterp/corefcn/graphics.in.h Wed May 11 09:44:55 2022 -0700 @@ -5781,7 +5781,7 @@ protected: void init (void) { - m_position.add_constraint ("min", 0, false); + m_position.add_constraint ("min", 0, true); } };