diff --git a/src/constants/coreSettings.ts b/src/constants/coreSettings.ts index a60dde91c..c3a9b30af 100644 --- a/src/constants/coreSettings.ts +++ b/src/constants/coreSettings.ts @@ -440,6 +440,8 @@ export const CORE_SETTINGS: SettingParams[] = [ name: 'Use new menu', type: 'combo', options: ['Disabled', 'Top', 'Bottom'], + tooltip: + 'Menu bar position. On mobile devices, the menu is always shown at the top.', migrateDeprecatedValue: (value: string) => { // Floating is now supported by dragging the docked actionbar off. if (value === 'Floating') { diff --git a/src/views/GraphView.vue b/src/views/GraphView.vue index 5d6719a48..f21cf1b61 100644 --- a/src/views/GraphView.vue +++ b/src/views/GraphView.vue @@ -1,10 +1,10 @@