From 95cd9376e81791724bc49493565440a1eaa5ee40 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Mon, 8 Apr 2024 10:21:12 +0100 Subject: [PATCH] lib: fix missing / in path --- libhyprcursor/hyprcursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhyprcursor/hyprcursor.cpp b/libhyprcursor/hyprcursor.cpp index 11b145b..55e1b5b 100644 --- a/libhyprcursor/hyprcursor.cpp +++ b/libhyprcursor/hyprcursor.cpp @@ -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) {