diff options
author | Ethan Conneely <Econn50@outlook.com> | 2022-07-10 10:10:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-10 12:10:28 +0300 |
commit | 8451b75689b44f11ec1707af7e26d915772c3972 (patch) | |
tree | d789dc68906ed5501622a12af21c40f82288b049 | |
parent | 563c4151df42ecefa866a6a4c164bf1e49626b70 (diff) | |
download | alacritty-8451b75689b44f11ec1707af7e26d915772c3972.tar.gz alacritty-8451b75689b44f11ec1707af7e26d915772c3972.zip |
Fix error when opening in root dir on Windows
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | alacritty/windows/wix/alacritty.wxs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c8816d2..c1d97b3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Character mappings in the DEC special graphics character set (line drawing) - Window flickering on resize on Wayland - Unnecessary config reload when using `/dev/null` as a config file +- Windows `Open Alacritty Here` on root of drive displaying error ## 0.10.1 diff --git a/alacritty/windows/wix/alacritty.wxs b/alacritty/windows/wix/alacritty.wxs index 2840f6fa..461e97cb 100644 --- a/alacritty/windows/wix/alacritty.wxs +++ b/alacritty/windows/wix/alacritty.wxs @@ -53,7 +53,7 @@ <!-- Add context menu --> <Component Id="ContextMenu" Guid="449f9121-f7b9-41fe-82da-52349ea8ff91"> <RegistryKey Root="HKCU" Key="Software\Classes\Directory\Background\shell\Open Alacritty here\command"> - <RegistryValue Type="string" Value="[AlacrittyProgramFiles]alacritty.exe --working-directory "%V"" KeyPath="yes"/> + <RegistryValue Type="string" Value="[AlacrittyProgramFiles]alacritty.exe" KeyPath="yes"/> </RegistryKey> <RegistryKey Root="HKCU" Key="Software\Classes\Directory\Background\shell\Open Alacritty here"> <RegistryValue Type="string" Name="Icon" Value="[AlacrittyProgramFiles]alacritty.exe"/> |