Fix handling of dashes in the style directory path (#53)

Fix by @ForNeVeR
This commit is contained in:
Friedrich von Never 2017-12-24 22:03:59 +07:00 committed by Alex
parent d73cfacde9
commit 18cd75ab41
1 changed files with 5 additions and 3 deletions

View File

@ -1186,9 +1186,11 @@ QByteArray iconMaskValueSize(int width, int height) {
QByteArray iconMaskValuePng(QString filepath) {
QByteArray result;
auto pathAndModifiers = filepath.split('-');
filepath = pathAndModifiers[0];
auto modifiers = pathAndModifiers.mid(1);
QFileInfo fileInfo(filepath);
auto directory = fileInfo.dir();
auto nameAndModifiers = fileInfo.fileName().split('-');
filepath = directory.filePath(nameAndModifiers[0]);
auto modifiers = nameAndModifiers.mid(1);
QImage png100x(filepath + ".png");
QImage png200x(filepath + "@2x.png");