diff --git a/src/Files.App/Views/Layouts/BaseGroupableLayoutPage.cs b/src/Files.App/Views/Layouts/BaseGroupableLayoutPage.cs index 1ba13fb01592..14c87e12a590 100644 --- a/src/Files.App/Views/Layouts/BaseGroupableLayoutPage.cs +++ b/src/Files.App/Views/Layouts/BaseGroupableLayoutPage.cs @@ -312,6 +312,11 @@ protected async void RenameTextBox_KeyDown(object sender, KeyRoutedEventArgs e) await CommitRenameAsync(textBox); e.Handled = true; break; + case VirtualKey.Home: + textBox.SelectionStart = 0; + textBox.SelectionLength = 0; + e.Handled = true; + break; case VirtualKey.Up: if (!isShiftPressed) textBox.SelectionStart = 0;