Skip to content

Commit b9192b5

Browse files
Fix: Fixed issue with open terminal as admin not working (#11444)
1 parent 3680e02 commit b9192b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Views/BaseShellPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ protected void ShellPage_PreviewKeyDown(object sender, KeyRoutedEventArgs args)
277277
switch (c: ctrl, s: shift, a: alt, t: tabInstance, k: args.Key)
278278
{
279279
// Ctrl + ` (accent key), open terminal
280-
case (true, false, false, true, (VirtualKey)192):
280+
case (true, _, false, true, (VirtualKey)192):
281281

282282
// Check if there is a folder selected, if not use the current directory.
283283
string path = FilesystemViewModel.WorkingDirectory;

0 commit comments

Comments
 (0)