razaqq
razaqq
I added this in https://github.com/gmarull/qtmodern/pull/44 You can do something like ``` d = windows.ModernDialog(parent=self, hide_window_buttons=True) ``` to create a QDialog with no window buttons. it could then look something like...
What you mean with "It do not work when closed."? If you mean that it does not close when you click yes or no, then that is normal, as you...
should be done however the merging of all the changes from the other pull request of hiding window buttons was detected horribly by git, which made this a mess... i...
okay i have redone this starting with the current origin/master. Force pushed over this branch, so we are back to a single commit
i will try on linux with x11, will report back
btw your latest commit 407d82b broke resource paths on windows for me, window buttons are not visible
there is another error: ```python CLOSE_ICON = ':/icon/maximize.svg' ``` should instead be ```python CLOSE_ICON = ':/icon/close.svg' ``` Another few small things I found while testing (windows): - [x] After minimizing/maximizing,...
calling resize() or move() on QMainWindow used to work. I know because I was using it ;)
Actually its not working anymore. Im using an older version `0.1.4` in my app with that one its fine. It must have been broken somewhen since then
it does work, but you need to put it in `__init__` of QMainWindow. You cant call it after creating ModernWindow. So you can not assign it to a button. I...