toolbar: change button order

The flash and bluetooth buttons are moved to the left. This way, the
run button is closer to the text editor.
This commit is contained in:
David Lechner
2022-03-12 15:47:47 -06:00
parent cf8438c689
commit 228ba4ebb8
+4 -4
View File
@@ -23,15 +23,15 @@ const Toolbar: React.VFC = (_props) => {
onContextMenu={preventBrowserNativeContextMenu}
className="pb-toolbar"
>
<ButtonGroup className="pb-toolbar-group pb-align-left">
<FlashButton id="flash" />
<BluetoothButton id="bluetooth" />
</ButtonGroup>
<ButtonGroup className="pb-toolbar-group pb-align-left">
<RunButton id="run" keyboardShortcut="F5" />
<StopButton id="stop" keyboardShortcut="F6" />
<ReplButton id="repl" />
</ButtonGroup>
<ButtonGroup className="pb-toolbar-group pb-align-left">
<FlashButton id="flash" />
<BluetoothButton id="bluetooth" />
</ButtonGroup>
<ButtonGroup className="pb-toolbar-group pb-align-right">
<SettingsButton
id="settings"