From e5c58ee3b8b5ac78c3a06a4a2ee5f0947ae8c7cb Mon Sep 17 00:00:00 2001 From: Kurt Jacobson Date: Sat, 25 Jan 2020 14:26:17 -0500 Subject: [PATCH] ENH: Add --develop command line option --- qtpyvcp/__init__.py | 1 + qtpyvcp/utilities/opt_parser.py | 1 + 2 files changed, 2 insertions(+) diff --git a/qtpyvcp/__init__.py b/qtpyvcp/__init__.py index f44d24c39..0d3aae2f9 100644 --- a/qtpyvcp/__init__.py +++ b/qtpyvcp/__init__.py @@ -40,6 +40,7 @@ --qt-api=(pyqt5 | pyqt | pyside2 | pyside) Specify the Qt Python binding to use. --perfmon Monitor and log system performance. + --develop Development mode. Enables live reloading of QSS styles. --command_line_args ... Additional args passed to the QtApplication. diff --git a/qtpyvcp/utilities/opt_parser.py b/qtpyvcp/utilities/opt_parser.py index 52763b105..524ee9500 100644 --- a/qtpyvcp/utilities/opt_parser.py +++ b/qtpyvcp/utilities/opt_parser.py @@ -35,6 +35,7 @@ --qt-api=(pyqt5 | pyqt | pyside2 | pyside) Specify the Qt Python binding to use. --perfmon Monitor and log system performance. + --develop Development mode. Enables live reloading of QSS styles. --command_line_args ... Additional args passed to the QtApplication.