mirror of https://github.com/procxx/kepka.git
Fix handling of dashes in the style directory path (#53)
Fix by @ForNeVeR
This commit is contained in:
parent
d73cfacde9
commit
18cd75ab41
|
@ -1186,9 +1186,11 @@ QByteArray iconMaskValueSize(int width, int height) {
|
||||||
QByteArray iconMaskValuePng(QString filepath) {
|
QByteArray iconMaskValuePng(QString filepath) {
|
||||||
QByteArray result;
|
QByteArray result;
|
||||||
|
|
||||||
auto pathAndModifiers = filepath.split('-');
|
QFileInfo fileInfo(filepath);
|
||||||
filepath = pathAndModifiers[0];
|
auto directory = fileInfo.dir();
|
||||||
auto modifiers = pathAndModifiers.mid(1);
|
auto nameAndModifiers = fileInfo.fileName().split('-');
|
||||||
|
filepath = directory.filePath(nameAndModifiers[0]);
|
||||||
|
auto modifiers = nameAndModifiers.mid(1);
|
||||||
|
|
||||||
QImage png100x(filepath + ".png");
|
QImage png100x(filepath + ".png");
|
||||||
QImage png200x(filepath + "@2x.png");
|
QImage png200x(filepath + "@2x.png");
|
||||||
|
|
Loading…
Reference in New Issue