Skip to content

Commit

Permalink
Feature: Changed drive tooltip position (#12363)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 authored May 16, 2023
1 parent 571b897 commit 25e0797
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Files.App/Helpers/GitHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static async Task<bool> Checkout(string? repositoryPath, string? branch)
var options = new CheckoutOptions();
var isBringingChanges = false;

Analytics.TrackEvent($"Triggered git checkout");
Analytics.TrackEvent("Triggered git checkout");

if (repository.RetrieveStatus().IsDirty)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Files.App/UserControls/SidebarControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
x:Class="Files.App.UserControls.SidebarControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="using:Files.App.Converters"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dataitems="using:Files.App.Data.Items"
xmlns:helpers="using:Files.App.Helpers"
xmlns:local="using:Files.App.UserControls"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mconv="using:CommunityToolkit.WinUI.UI.Converters"
xmlns:converters="using:Files.App.Converters"
xmlns:dataitems="using:Files.App.Data.Items"
HorizontalAlignment="Stretch"
Collapsed="NavigationView_Collapsed"
DisplayModeChanged="SidebarControl_DisplayModeChanged"
Expand Down Expand Up @@ -99,7 +99,7 @@
Tag="{x:Bind Path}"
Visibility="{x:Bind ItemVisibility}">
<ToolTipService.ToolTip>
<ToolTip>
<ToolTip Placement="Right">
<StackPanel>
<!-- Displays the drive name, this is hidden when the extended details are shown -->
<TextBlock
Expand Down

0 comments on commit 25e0797

Please sign in to comment.