From f315208495aab7ac545b1fb73f31927aed34c862 Mon Sep 17 00:00:00 2001 From: Nicola Elia Date: Thu, 3 Dec 2020 20:09:07 +0100 Subject: [PATCH] Add shift+click to serial monitor button on the toolbar to open serial plotter --- app/src/processing/app/EditorToolbar.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/EditorToolbar.java b/app/src/processing/app/EditorToolbar.java index d37d0cc96..a2a9b804e 100644 --- a/app/src/processing/app/EditorToolbar.java +++ b/app/src/processing/app/EditorToolbar.java @@ -62,7 +62,7 @@ public class EditorToolbar extends JComponent implements MouseInputListener, Key * Titles for each button when the shift key is pressed. */ private static final String[] titleShift = { - tr("Verify"), tr("Upload Using Programmer"), tr("New"), tr("Open"), tr("Save As..."), tr("Serial Monitor") + tr("Verify"), tr("Upload Using Programmer"), tr("New"), tr("Open"), tr("Save As..."), tr("Serial Plotter") }; private static final int BUTTON_COUNT = title.length; @@ -500,7 +500,11 @@ public class EditorToolbar extends JComponent implements MouseInputListener, Key break; case SERIAL: - editor.handleSerial(); + if (isShiftDown) { + editor.handlePlotter(); + } else { + editor.handleSerial(); + } break; default: