mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-16 18:25:58 +01:00
lib: fix missing / in path
This commit is contained in:
parent
818d8c4b69
commit
95cd9376e8
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ static bool pathAccessible(const std::string& path) {
|
|||
}
|
||||
|
||||
static bool themeAccessible(const std::string& path) {
|
||||
return pathAccessible(path + "/manifest.hl") || pathAccessible(path + "manifest.toml");
|
||||
return pathAccessible(path + "/manifest.hl") || pathAccessible(path + "/manifest.toml");
|
||||
}
|
||||
|
||||
static std::string getFirstTheme(PHYPRCURSORLOGFUNC logfn) {
|
||||
|
|
Loading…
Reference in a new issue