Skip to content

Commit

Permalink
Merge pull request #12 from quadproduction/release/4.0.5
Browse files Browse the repository at this point in the history
release/4.0.5
  • Loading branch information
BenSouchet authored Dec 2, 2024
2 parents e1a4f62 + e2ef532 commit cf2cbd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/quadpype/lib/attribute_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ def __init__(
label: Optional[str] = None,
tooltip: Optional[str] = None,
is_label_horizontal: Optional[bool] = None,
visible: Optional[bool] = False,
enabled: Optional[bool] = False
visible: Optional[bool] = None,
enabled: Optional[bool] = None
):
if is_label_horizontal is None:
is_label_horizontal = True

if visible is None:
visible = False
visible = True

if enabled is None:
enabled = True
Expand Down
2 changes: 1 addition & 1 deletion src/quadpype/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""File declaring QuadPype version."""
__version__ = "4.0.4"
__version__ = "4.0.5"

0 comments on commit cf2cbd1

Please sign in to comment.