aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Menu.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 7bd273f6f..23f897ae4 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -924,15 +924,15 @@ export default class FranzMenu {
924 }); 924 });
925 925
926 if (serviceTpl.length > 0) { 926 if (serviceTpl.length > 0) {
927 tpl[3].submenu = serviceTpl; 927 tpl[2].submenu = serviceTpl;
928 } 928 }
929 929
930 if (workspaceStore.isFeatureEnabled) { 930 if (workspaceStore.isFeatureEnabled) {
931 tpl[4].submenu = this.workspacesMenu(); 931 tpl[3].submenu = this.workspacesMenu();
932 } 932 }
933 933
934 if (todosStore.isFeatureEnabled) { 934 if (todosStore.isFeatureEnabled) {
935 tpl[5].submenu = this.todosMenu(); 935 tpl[4].submenu = this.todosMenu();
936 } 936 }
937 } else { 937 } else {
938 const touchIdEnabled = isMac ? (this.stores.settings.app.useTouchIdToUnlock && systemPreferences.canPromptTouchID()) : false; 938 const touchIdEnabled = isMac ? (this.stores.settings.app.useTouchIdToUnlock && systemPreferences.canPromptTouchID()) : false;