Skip to content

Commit

Permalink
Fixed some spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
davesayles committed Mar 5, 2012
1 parent a82f0b2 commit c2a0be3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/replicatorg/app/ui/PreferencesWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void actionPerformed(ActionEvent e) {
c.add(new JLabel("On ReplicatorG launch:"),"split");
// We don't have SELECTED_KEY in Java 1.5, so we'll do things the old-fashioned, ugly way.
JRadioButton b;
b = new JRadioButton(new RadioAction("Open last opened or save file",InitialOpenBehavior.OPEN_LAST));
b = new JRadioButton(new RadioAction("Open last opened or saved file",InitialOpenBehavior.OPEN_LAST));
if (InitialOpenBehavior.OPEN_LAST == openBehavior) { b.setSelected(true); }
bg.add(b);
c.add(b,"split");
Expand Down Expand Up @@ -194,10 +194,10 @@ public PreferencesWindow(final MachineInterface machine) {
addCheckboxForPref(content,"Automatically connect to machine at startup","replicatorg.autoconnect",true);
addCheckboxForPref(content,"Show experimental machine profiles","machine.showExperimental",false);
addCheckboxForPref(content,"Review GCode for potential toolhead problems before building","build.safetyChecks",true);
addCheckboxForPref(content,"Break Z motion into seperate moves (normally false)","replicatorg.parser.breakzmoves",false);
addCheckboxForPref(content,"Break Z motion into separate moves (normally false)","replicatorg.parser.breakzmoves",false);
addCheckboxForPref(content,"Show starfield in model preview window","ui.show_starfield",false);
addCheckboxForPref(content,"Notifications in System tray","ui.preferSystemTrayNotifications",false);
addCheckboxForPref(content,"Automatically re-generate gcode when building from model view.","build.autoGenerateGcode",true);
addCheckboxForPref(content,"Automatically regenerate gcode when building from model view.","build.autoGenerateGcode",true);
addCheckboxForPref(content,"Use native avrdude for uploading code","uploader.useNative",false);

JPanel advanced = new JPanel();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ public void actionPerformed(ActionEvent e) {
// loadParameters();
}
});
resetToBlankButton.setToolTipText("Reset the onboard settings to the *completely blank*");
resetToBlankButton.setToolTipText("Reset the onboard settings to *completely blank*");
add(resetToBlankButton);

commitButton.addActionListener(new ActionListener() {
Expand Down

0 comments on commit c2a0be3

Please sign in to comment.