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
Qt Code:
  1. <file alias="asdf">images/YELLOW/radiobutton_unchecked.svg</file>
To copy to clipboard, switch view to plain text mode 
Working
Qt Code:
  1. <file>images/YELLOW/radiobutton_unchecked.svg</file>
To copy to clipboard, switch view to plain text mode 
Working
Qt Code:
  1. <file alias="asdf">images/YELLOW/radiobutton_unchecked.png</file>
To copy to clipboard, switch view to plain text mode 
Working for svg
Qt Code:
  1. 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
Qt Code:
  1. QRadioButton#yellow::indicator::unchecked {image: url(:/asdf);}
To copy to clipboard, switch view to plain text mode