Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2934 from pypeclub/bugfix/collapsed_wrap_behavior
Browse files Browse the repository at this point in the history
Settings UI: Collapsed of collapsible wrapper works as expected
  • Loading branch information
iLLiCiTiT authored Mar 24, 2022
2 parents 15b2b73 + 953ff9e commit 437624d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openpype/tools/settings/settings/wrapper_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def create_ui(self):
self.content_layout = content_layout

if self.collapsible:
body_widget.toggle_content(self.collapsed)
if not self.collapsed:
body_widget.toggle_content()
else:
body_widget.hide_toolbox(hide_content=False)

Expand Down

0 comments on commit 437624d

Please sign in to comment.