Author: gs Date: Tue Mar 31 10:45:26 2009 New Revision: 56476
URL: http://svn.opensuse.org/viewcvs/yast?rev=56476&view=rev Log: add test case for ncurses bug #488757
Added: trunk/ycp-ui-bindings/examples/IntField3.ycp
Added: trunk/ycp-ui-bindings/examples/IntField3.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/examples/IntField... ============================================================================== --- trunk/ycp-ui-bindings/examples/IntField3.ycp (added) +++ trunk/ycp-ui-bindings/examples/IntField3.ycp Tue Mar 31 10:45:26 2009 @@ -0,0 +1,14 @@ +{ + // `IntField in combination with `HWeight + // (test case for ncurses bug #488757) + UI::OpenDialog( + `HBox( + `HWeight(1, + `IntField( "short", 0, 10000, 50)), + `HWeight(1, + `PushButton(`opt(`default), "long label")) + ) + ); + UI::UserInput(); + UI::CloseDialog(); +}
yast-commit@lists.opensuse.org