Hi,
I'd like to use aliases for my svg images.
If I set an alias they are not working. If I change the file to non-svg then it is displayed.
The files are exist. If I don't use the alias the files are shown.
Why can't I use aliases for svg files????
Not working
<file alias="asdf">images/YELLOW/radiobutton_unchecked.svg</file>
<file alias="asdf">images/YELLOW/radiobutton_unchecked.svg</file>
To copy to clipboard, switch view to plain text mode
Working
<file>images/YELLOW/radiobutton_unchecked.svg</file>
<file>images/YELLOW/radiobutton_unchecked.svg</file>
To copy to clipboard, switch view to plain text mode
Working
<file alias="asdf">images/YELLOW/radiobutton_unchecked.png</file>
<file alias="asdf">images/YELLOW/radiobutton_unchecked.png</file>
To copy to clipboard, switch view to plain text mode
Working for svg
QRadioButton#yellow::indicator::unchecked {image: url(:/images/YELLOW/radiobutton_unchecked.svg);}
QRadioButton#yellow::indicator::unchecked {image: url(:/images/YELLOW/radiobutton_unchecked.svg);}
To copy to clipboard, switch view to plain text mode
Not working for svg, but working for png
QRadioButton#yellow::indicator::unchecked {image: url(:/asdf);}
QRadioButton#yellow::indicator::unchecked {image: url(:/asdf);}
To copy to clipboard, switch view to plain text mode
Bookmarks