From e3056efd46c0eef64fa989c8a47676a84051c575 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Tue, 12 Mar 2024 00:25:08 +0000 Subject: [PATCH] lib: fix missing isSVG assignment --- libhyprcursor/hyprcursor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libhyprcursor/hyprcursor.cpp b/libhyprcursor/hyprcursor.cpp index 1d32080..6e5bb0c 100644 --- a/libhyprcursor/hyprcursor.cpp +++ b/libhyprcursor/hyprcursor.cpp @@ -617,6 +617,7 @@ std::optional CHyprcursorImplementation::loadTheme() { auto* IMAGE = LOADEDSHAPE.images.emplace_back(std::make_unique()).get(); IMAGE->side = i.size; IMAGE->delay = i.delay; + IMAGE->isSVG = SHAPE->shapeType == SHAPE_SVG; // read from zip zip_file_t* image_file = zip_fopen(zip, i.filename.c_str(), ZIP_FL_UNCHANGED);