@@ -740,25 +740,24 @@ public void itemStateChanged(ItemEvent e) {
740740 Preferences .setBoolean ("export.application.stop" , showStopButton .isSelected ());
741741 }
742742 });
743- showStopButton .setEnabled (Preferences .getBoolean ("export.application.fullscreen " ));
743+ showStopButton .setEnabled (Preferences .getBoolean ("export.application.present " ));
744744 showStopButton .setBorder (new EmptyBorder (3 , 13 + indent , 6 , 13 ));
745745
746- final JCheckBox fullScreenButton = new JCheckBox (Language .text ("export.options.fullscreen" ));
747- //fullscreenButton.setMnemonic(KeyEvent.VK_F);
748- fullScreenButton .setSelected (Preferences .getBoolean ("export.application.fullscreen" ));
749- fullScreenButton .addItemListener (new ItemListener () {
746+ final JCheckBox presentButton = new JCheckBox (Language .text ("export.options.fullscreen" ));
747+ presentButton .setSelected (Preferences .getBoolean ("export.application.present" ));
748+ presentButton .addItemListener (new ItemListener () {
750749 public void itemStateChanged (ItemEvent e ) {
751- boolean sal = fullScreenButton .isSelected ();
752- Preferences .setBoolean ("export.application.fullscreen " , sal );
750+ boolean sal = presentButton .isSelected ();
751+ Preferences .setBoolean ("export.application.present " , sal );
753752 showStopButton .setEnabled (sal );
754753 }
755754 });
756- fullScreenButton .setBorder (new EmptyBorder (3 , 13 , 3 , 13 ));
755+ presentButton .setBorder (new EmptyBorder (3 , 13 , 3 , 13 ));
757756
758757 JPanel presentPanel = new JPanel ();
759758 presentPanel .setLayout (new BoxLayout (presentPanel , BoxLayout .Y_AXIS ));
760759 Box fullScreenBox = Box .createHorizontalBox ();
761- fullScreenBox .add (fullScreenButton );
760+ fullScreenBox .add (presentButton );
762761
763762 /*
764763 //run.present.stop.color
0 commit comments