Skip to content

Commit 8e7ba32

Browse files
authored
Increased the delay required to trigger double tap to rename (#2366)
1 parent 12db575 commit 8e7ba32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Files/Views/LayoutModes/GenericFileBrowser.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private void AllView_PreparingCellForEdit(object sender, DataGridPreparingCellFo
298298
{
299299
tapDebounceTimer.Stop();
300300
AllView.BeginEdit(); // EditingEventArgs will be null
301-
}, TimeSpan.FromMilliseconds(500), false);
301+
}, TimeSpan.FromMilliseconds(700), false);
302302
}
303303
else
304304
{
@@ -589,4 +589,4 @@ private void RadioMenuSortDirection_Click(object sender, RoutedEventArgs e)
589589
}
590590
}
591591
}
592-
}
592+
}

0 commit comments

Comments
 (0)