show mode in lower left status box
This commit is contained in:
parent
1c7a56846a
commit
eadda0b7e3
3 changed files with 7 additions and 5 deletions
|
|
@ -1588,8 +1588,9 @@ self.kiri.copyright = exports.COPYRIGHT;
|
|||
// associate named process with the current device
|
||||
settings.devproc[currentDeviceName()] = name;
|
||||
|
||||
// update selection display (off for laser)
|
||||
$('selected-device').innerHTML = currentDeviceName();
|
||||
// update selection display
|
||||
$('selected-mode').innerHTML = API.mode.get();
|
||||
$('selected-device').innerHTML = API.device.get();
|
||||
$('selected-process').innerHTML = name;
|
||||
|
||||
// FDM process settings overridden by device
|
||||
|
|
|
|||
1
notes.md
1
notes.md
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
* `B` restore settings should restore all mode/device/settings (find corner cases)
|
||||
* `C` set page background color? or dark mode?
|
||||
* `C` better small screen support (on screen button for hiding side panels, compact selectors)
|
||||
* `F` implement an in-app bug reporting system
|
||||
* `F` widget general add-ons (fdm supports, cam tabs)
|
||||
* `F` extend mesh object to store raw + annotations (rot,scale,pos)
|
||||
|
|
|
|||
|
|
@ -27,9 +27,11 @@
|
|||
<div id="control-right" class="control"><div id="control"></div></div>
|
||||
<!-- selected device and print profiles -->
|
||||
<div id="selected" class="control">
|
||||
<span id="selected-device">???</span>
|
||||
<span id="selected-mode">mode</span>
|
||||
<span> : </span>
|
||||
<span id="selected-process">???</span>
|
||||
<span id="selected-device">device</span>
|
||||
<span> : </span>
|
||||
<span id="selected-process">settings</span>
|
||||
</div>
|
||||
<!-- all modal dialogs -->
|
||||
<div id="modal">
|
||||
|
|
|
|||
Loading…
Reference in a new issue