Skip to content

Commit 4dfea38

Browse files
committed
Refactor toggle labels: simplify text for Auto-send and Hotkeys toggles
1 parent a79db0f commit 4dfea38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buttons-init.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ window.MaxExtensionButtonsInit = {
2626
generateAndAppendToggles: function (container) {
2727
const autoSendToggle = MaxExtensionInterface.createToggle(
2828
'auto-send-toggle',
29-
'Enable Auto-send',
29+
'Auto-send',
3030
globalMaxExtensionConfig.globalAutoSendEnabled,
3131
(state) => {
3232
globalMaxExtensionConfig.globalAutoSendEnabled = state;
@@ -37,7 +37,7 @@ window.MaxExtensionButtonsInit = {
3737

3838
const hotkeysToggle = MaxExtensionInterface.createToggle(
3939
'hotkeys-toggle',
40-
'Enable Hotkeys',
40+
'Hotkeys',
4141
globalMaxExtensionConfig.enableShortcuts,
4242
(state) => {
4343
globalMaxExtensionConfig.enableShortcuts = state;

0 commit comments

Comments
 (0)