<div dir="ltr">Isn't the choice of dialogs intertwined with styles?</div><br><div class="gmail_quote"><div dir="ltr">On Sun, 21 Aug 2016 at 06:03 Dmitry Shachnev <<a href="mailto:mitya57@ubuntu.com">mitya57@ubuntu.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Fri, Aug 19, 2016 at 11:42:45AM -0700, David Cortesi wrote:<br>
> > When running the sample the file dialog looks way out of place (UGLY in<br>
> > a hugely distracting way).<br>
><br>
> You might experiment with the -style option when starting the application.<br>
> I did this in one case to avoid a problem in the native toolkit:<br>
><br>
>     args = []<br>
>     if sys.platform == 'linux' :<br>
>         # avoid a GTK bug in Ubuntu Unity<br>
>         args = ['','-style','Cleanlooks']<br>
>     the_app = QApplication( args )<br>
<br>
Styles and dialogs are unrelated things. The original question was about<br>
not using GTK+ dialogs, which can be fixed by building and using the GTK+<br>
platform theme. This has nothing to do with the styles.<br>
<br>
Also, instead of the args hack in your snippet, you can better use API:<br>
<br>
  the_app.setStyle('cleanlooks')<br>
<br>
See <a href="https://doc.qt.io/qt-5/qapplication.html#setStyle-1" rel="noreferrer" target="_blank">https://doc.qt.io/qt-5/qapplication.html#setStyle-1</a><br>
<br>
--<br>
Dmitry Shachnev<br>
_______________________________________________<br>
PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com" target="_blank">PyQt@riverbankcomputing.com</a><br>
<a href="https://www.riverbankcomputing.com/mailman/listinfo/pyqt" rel="noreferrer" target="_blank">https://www.riverbankcomputing.com/mailman/listinfo/pyqt</a></blockquote></div>