main check for develop arg changed

This commit is contained in:
iLLiCiTiT 2020-09-15 15:19:38 +02:00
parent edce6a1ea9
commit 4c54afea72

View file

@ -11,7 +11,7 @@ if __name__ == "__main__":
app.setStyleSheet(stylesheet)
app.setWindowIcon(QtGui.QIcon(settings.style.app_icon_path()))
develop = "-dev" in sys.argv
develop = "-d" in sys.argv or "--develop" in sys.argv
widget = settings.MainWidget(develop)
widget.show()