@@ -650,11 +650,11 @@ else if (height < 100)
650
650
else
651
651
menuItem (fileMenu , "Close All" , 'A' , doCloseAll ());
652
652
JMenu instanceMenu = menu (mb , "&Instance" , null );
653
- enumerateMenu = menuItem (instanceMenu , "Show Fresh Solution" , 'N' , 'N' , doNext ());
654
- cnfgMenu = menuItem (instanceMenu , "Show Fresh Configuration" , 'C' , 'C' , doConfig ()); // [HASLab]
655
- pathMenu = menuItem (instanceMenu , "Show Fresh Path" , 'P' , 'P' , doPath ()); // [HASLab]
656
- initMenu = menuItem (instanceMenu , "Show Fresh Initial State" , 'I' , 'I' , doInit ()); // [HASLab]
657
- forkMenu = menuItem (instanceMenu , "Show Different Post-state " , 'F' , 'F' , doFork ()); // [HASLab]
653
+ enumerateMenu = menuItem (instanceMenu , "Show New Solution" , 'N' , 'N' , doNext ());
654
+ cnfgMenu = menuItem (instanceMenu , "Show New Configuration" , 'C' , 'C' , doConfig ()); // [HASLab]
655
+ pathMenu = menuItem (instanceMenu , "Show New Path" , 'P' , 'P' , doPath ()); // [HASLab]
656
+ initMenu = menuItem (instanceMenu , "Show New Initial State" , 'I' , 'I' , doInit ()); // [HASLab]
657
+ forkMenu = menuItem (instanceMenu , "Show New Fork " , 'F' , 'F' , doFork ()); // [HASLab]
658
658
leftNavMenu = menuItem (instanceMenu , "Show Previous State" , KeyEvent .VK_LEFT , KeyEvent .VK_LEFT , leftNavListener ); // [HASLab]
659
659
rightNavMenu = menuItem (instanceMenu , "Show Next State" , KeyEvent .VK_LEFT , KeyEvent .VK_RIGHT , rightNavListener ); // [HASLab]
660
660
thememenu = menu (mb , "&Theme" , doRefreshTheme ());
@@ -707,11 +707,11 @@ public void actionPerformed(ActionEvent e) {
707
707
toolbar .add (magicLayout = OurUtil .button ("Magic Layout" , "Automatic theme customization (will reset current theme)" , "images/24_settings_apply2.gif" , doMagicLayout ()));
708
708
toolbar .add (openEvaluatorButton = OurUtil .button ("Evaluator" , "Open the evaluator" , "images/24_settings.gif" , doOpenEvalPanel ()));
709
709
toolbar .add (closeEvaluatorButton = OurUtil .button ("Close Evaluator" , "Close the evaluator" , "images/24_settings_close2.gif" , doCloseEvalPanel ()));
710
- toolbar .add (enumerateButton = OurUtil .button ("Next " , "Show a fresh solution" , "images/24_history.gif" , doNext ()));
711
- toolbar .add (cnfgButton = OurUtil .button ("Fresh Config" , "Show a fresh configuration" , "images/24_history.gif" , doConfig ())); // [HASLab]
712
- toolbar .add (pathButton = OurUtil .button ("Fresh Path" , "Show a fresh path" , "images/24_history.gif" , doPath ())); // [HASLab]
713
- toolbar .add (initButton = OurUtil .button ("Fresh Init" , "Show a fresh initial state" , "images/24_history.gif" , doInit ())); // [HASLab]
714
- toolbar .add (forkButton = OurUtil .button ("Fork" , "Show a different post-state " , "images/24_history.gif" , doFork ())); // [HASLab]
710
+ toolbar .add (enumerateButton = OurUtil .button ("New " , "Show a new solution" , "images/24_history.gif" , doNext ()));
711
+ toolbar .add (cnfgButton = OurUtil .button ("New Config" , "Show a new configuration" , "images/24_history.gif" , doConfig ())); // [HASLab]
712
+ toolbar .add (pathButton = OurUtil .button ("New Path" , "Show a new path" , "images/24_history.gif" , doPath ())); // [HASLab]
713
+ toolbar .add (initButton = OurUtil .button ("New Init" , "Show a new initial state" , "images/24_history.gif" , doInit ())); // [HASLab]
714
+ toolbar .add (forkButton = OurUtil .button ("New Fork" , "Show a new fork " , "images/24_history.gif" , doFork ())); // [HASLab]
715
715
toolbar .add (leftNavButton = OurUtil .button (new String (Character .toChars (0x2190 )), "Show the previous state" , "images/24_history.gif" , leftNavListener ));
716
716
toolbar .add (rightNavButton = OurUtil .button (new String (Character .toChars (0x2192 )), "Show the next state" , "images/24_history.gif" , rightNavListener ));
717
717
toolbar .add (projectionButton );
0 commit comments