minor fixes

This commit is contained in:
sanjayk03-dev
2024-11-29 13:25:33 +05:30
parent fcd6397ba8
commit 804a3aa0e9
2 changed files with 2 additions and 2 deletions

View File

@@ -323,7 +323,7 @@ module.exports = new Vue({
showSwitchRotaryModeDialog: function(){
SvelteComponents.showDialog("SwitchRotary", {
isActive: this.is_rotary_active,
isActive: !this.is_rotary_active,
switchMode: () => this.toggle_rotary()
});
},

View File

@@ -21,7 +21,7 @@
<Title id="switch-rotary-dialog-title">Switch Rotary Mode</Title>
<Content id="switch-rotary-dialog-content">
{isActive ? "Enable Rotary Mode?" : "Disable Rotary Mode?"}
{isActive ? "Turn on Rotary box?" : "Turn off Rotary box?"}
</Content>
<Actions>