Add version info in window title

This commit is contained in:
Daniel Pizetta 2018-02-06 17:38:08 -02:00
parent 4903111182
commit 8d2bd8a726
1 changed files with 2 additions and 1 deletions

View File

@ -127,7 +127,8 @@ def main():
window = QMainWindow()
ui = ui_main()
ui.setupUi(window)
window.setWindowTitle("QDarkStyle Example - Using " + args.qt_from)
window.setWindowTitle("QDarkStyle v." + qdarkstyle.__version__ +
" - Example - Using " + args.qt_from)
# create docks for buttons
dw_buttons = QDockWidget()