From 3dc41d283b2c77b5bb43dfb37636f4331a692750 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Tue, 30 Mar 2021 16:00:47 +0200 Subject: [PATCH] Hiero: hound fix --- pype/hosts/hiero/api/plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pype/hosts/hiero/api/plugin.py b/pype/hosts/hiero/api/plugin.py index cfbe7f664f..c2af4a011c 100644 --- a/pype/hosts/hiero/api/plugin.py +++ b/pype/hosts/hiero/api/plugin.py @@ -266,7 +266,8 @@ class CreatorWidget(QtWidgets.QDialog): elif v["type"] == "QSpinBox": data[k]["value"] = self.create_row( content_layout, "QSpinBox", v["label"], - setValue=v["value"], setMinimum=1, setMaximum=100000, setToolTip=tool_tip) + setValue=v["value"], setMinimum=1, + setMaximum=100000, setToolTip=tool_tip) return data