Remove fluff

This commit is contained in:
DarN
2021-06-26 16:53:43 +02:00
parent 3d3216ba91
commit d2156dfc1d
+2 -2
View File
@@ -49,11 +49,11 @@ static void printWMThemeFromConfigFile(FFinstance* instance, const char* configF
uint32_t idx = 0;
idx = ffStrbufFirstIndexS(&theme, "qml_");
if((idx != theme.length))
if(idx != theme.length)
ffStrbufSubstrAfter(&theme, idx + 3);
idx = ffStrbufFirstIndexS(&theme, "svg__");
if((idx != theme.length))
if(idx != theme.length)
ffStrbufSubstrAfter(&theme, idx + 4);
printWMTheme(instance, theme.chars);