Gavin
Gavin
I would have done it except I'm not entirely sure what header files are needed. Sometimes projects create header files dynamically in their build script. I did a `dpkg -L`...
I'm not quite familiar with how to use the .templates. I've only ever used the .qss file. I renamed the .template to .qss and tried to import it using the...
I assume you need a generate a .qss file somehow before it can be used within Qt as a stylesheet?
Okay that worked! Thanks I found the build_stylesheet() function, I managed to get it to build the qss sheet. ```python #!/usr/bin/python3 import sys from PySide2 import QtWidgets from qt_material import...
I added this line to my C++ code, and placed the "theme" folder in the same directory as my executable. I don't think the icons showed up. ```cpp QDir::addSearchPath("icon", "./theme");...
I think I managed to get it to work...but I had to do the following I had to modify the .qss file and replace all instances of `url(:/icon/XXXXXX)` with `url(icon/XXXXX)`...
Okay more success. In my C++ code I added this: ```cpp QDir::addSearchPath("icon", QDir::currentPath() + "/theme"); ``` Then I had to modify all the urls to look something like this: ```...
That would be awesome!
Looks like its working! Thanks for the quick turn around on this!
Hi @akshaybabloo , you can do this relatively easily in 2 steps. 1. Generate the qss and icon files. I do this directly from my bash terminal. Type in each...