Added another line which needs to be changed, to use it with PyQt4 instead of PySide

This commit is contained in:
swizzorable 2015-06-26 14:36:20 +02:00
parent f617a2ccb7
commit aa3bfd557c
1 changed files with 11 additions and 0 deletions

View File

@ -98,6 +98,17 @@ by
app.setStyleSheet(qdarkstyle.load_stylesheet(pyside=False))
```
and
```
from PySide import QtGui
```
by
```
from PyQt4 import QtGui
```
To use PyQt5, you need to use ``load_stylesheet_pyqt5`` instead of
``load_stylesheet``.