Skip to content

Commit c16afee

Browse files
authored
Fix: Fixed an issue where hover to open was too sensitive (#15694)
1 parent 87e501c commit c16afee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Files.App/UserControls/TabBar/TabBar.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public TabBar()
6565
{
6666
InitializeComponent();
6767

68-
tabHoverTimer.Interval = TimeSpan.FromMilliseconds(500);
68+
tabHoverTimer.Interval = TimeSpan.FromMilliseconds(1000);
6969
tabHoverTimer.Tick += TabHoverSelected;
7070

7171
var appWindow = MainWindow.Instance.AppWindow;

src/Files.App/Views/Layouts/BaseLayoutPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ selectedItems is not null &&
12371237
ItemManipulationModel.SetSelectedItem(hoveredItem);
12381238
}
12391239
},
1240-
TimeSpan.FromMilliseconds(600), false);
1240+
TimeSpan.FromMilliseconds(1000), false);
12411241
}
12421242

12431243
protected internal void FileListItem_PointerExited(object sender, PointerRoutedEventArgs e)

0 commit comments

Comments
 (0)