Show Preview Hotkey in tooltip

This commit is contained in:
Vic 2022-12-28 01:25:07 +08:00
parent bdbef54016
commit 8f3ca61b21
2 changed files with 3 additions and 1 deletions

View file

@ -743,7 +743,7 @@
FocusVisualMargin="5"
IsOn="{Binding Settings.AlwaysPreview}"
Style="{DynamicResource SideToggleSwitch}"
ToolTip="{DynamicResource AlwaysPreviewToolTip}" />
ToolTip="{Binding AlwaysPreviewToolTip}" />
<TextBlock Style="{StaticResource Glyph}">
&#xe8a1;
</TextBlock>

View file

@ -243,6 +243,8 @@ namespace Flow.Launcher.ViewModel
public List<Language> Languages => _translater.LoadAvailableLanguages();
public IEnumerable<int> MaxResultsRange => Enumerable.Range(2, 16);
public string AlwaysPreviewTooltip => string.Format(_translater.GetTranslation("AlwaysPreviewToolTip"), Settings.PreviewHotkey);
public string TestProxy()
{
var proxyServer = Settings.Proxy.Server;