Skip to content

Commit

Permalink
Fix rule discovery when in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
samhocevar committed Jun 3, 2021
1 parent edab289 commit 05c6ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wincompose/misc/Utils.cs
Expand Up @@ -56,7 +56,7 @@ public static string LocalAppDataDir

public static string DataDir
=> Path.Combine(ExecutableDir, IsInstalled ? "res" :
IsDebugging ? "../../rules" : "rules");
IsDebugging ? "../../../rules" : "rules");

public static string UserDir
=> Environment.ExpandEnvironmentVariables("%USERPROFILE%");
Expand Down

0 comments on commit 05c6ded

Please sign in to comment.