From 2f1dba8345d5eb9b325d62f09c4327af3b1185c5 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 20 Oct 2022 21:17:42 +1100 Subject: [PATCH] add Position Rest tool tip --- Flow.Launcher/Languages/en.xaml | 1 + Flow.Launcher/MainWindow.xaml.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index a92a68d0a..dd4cc3182 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -24,6 +24,7 @@ Game Mode Suspend the use of Hotkeys. Position Reset + Reset search window position Flow Launcher Settings diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index fcd0670c4..32271ac9c 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -268,6 +268,7 @@ namespace Flow.Launcher contextMenu.Items.Add(header); contextMenu.Items.Add(open); gamemode.ToolTip = InternationalizationManager.Instance.GetTranslation("GameModeToolTip"); + positionreset.ToolTip = InternationalizationManager.Instance.GetTranslation("PositionResetToolTip"); contextMenu.Items.Add(gamemode); contextMenu.Items.Add(positionreset); contextMenu.Items.Add(settings);