Fix SerialPlotter.java not applying line ending preference on new window to dropdown box #11070
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
applyPreferencesis called but the class function is misspelled asappyPreferencesArduino/app/src/processing/app/SerialPlotter.java
Line 338 in f4e8a91
Because of the typo, the class function was never called and only the superclass is called.
In practice, the
applyPreferencesis just reading the preferences file and setting the dropdown boxes to the current running value. Because the class applyPreferences wasn't called, the line ending dropdown box is not displaying the correct line ending that the user had set.Before the change, changing the line ending preference does change the preference.
Arduino/app/src/processing/app/SerialPlotter.java
Lines 323 to 326 in f4e8a91
However, it's possible that
No line endingis used even if you had a line ending preference set internally. (send() class function uses the current dropdown selection, and becauseNo line endingis the default value on new window)Arduino/app/src/processing/app/SerialPlotter.java
Lines 347 to 369 in f4e8a91