Skip to content

Commit

Permalink
Fix: Added tooltip when hovering over "Open in VS Code" (#13693)
Browse files Browse the repository at this point in the history
  • Loading branch information
William-Hiatt committed Nov 6, 2023
1 parent 7def5b3 commit 14d204e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Files.App/UserControls/StatusBarControl.xaml
Expand Up @@ -188,13 +188,14 @@
x:Name="OpenFolderInVSCodeButton"
Command="{x:Bind Commands.OpenInVSCode}"
KeyboardAcceleratorTextOverride="{x:Bind Commands.OpenInVSCode.HotKeys, Mode=OneWay}"
Text="{x:Bind Commands.OpenInVSCode.Label, Mode=OneWay}" />
Text="{x:Bind Commands.OpenInVSCode.Label, Mode=OneWay}"
ToolTipService.ToolTip="{x:Bind Commands.OpenInVSCode.LabelWithHotKey, Mode=OneWay}" />
<MenuFlyoutItem
x:Name="OpenRepoInVSCodeButton"
Command="{x:Bind Commands.OpenRepoInVSCode}"
KeyboardAcceleratorTextOverride="{x:Bind Commands.OpenRepoInVSCode.HotKeys, Mode=OneWay}"
Text="{x:Bind Commands.OpenRepoInVSCode.Label, Mode=OneWay}"
Visibility="{x:Bind Commands.OpenRepoInVSCode.IsExecutable, Mode=OneWay}" />
ToolTipService.ToolTip="{x:Bind Commands.OpenRepoInVSCode.LabelWithHotKey, Mode=OneWay}" />
</MenuFlyout>
</Button.Flyout>
</Button>
Expand Down

0 comments on commit 14d204e

Please sign in to comment.