Browse Source

Fix tooltip

Ruben 1 year ago
parent
commit
841fefb0da
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PicView.WPF/Views/UserControls/Buttons/GoToPicButton.xaml.cs

+ 1 - 1
src/PicView.WPF/Views/UserControls/Buttons/GoToPicButton.xaml.cs

@@ -28,7 +28,7 @@ public partial class GoToPicButton
                 GoToPicBox.CaretBrush = new SolidColorBrush(ConfigColors.MainColor);
             };
             GoToPicBox.PreviewKeyDown += async (s, x) => await GoToPicPreviewKeysAsync(s, x).ConfigureAwait(false);
-            GoToPicBox.Text = TranslationHelper.GetTranslation("GoToImageAtSpecifiedIndex");
+            GoToPicBox.ToolTip = TranslationHelper.GetTranslation("GoToImageAtSpecifiedIndex");
         };
     }