Skip to content

Commit

Permalink
Merge pull request #65 from soupday/Dev
Browse files Browse the repository at this point in the history
2.1.9
  • Loading branch information
soupday authored Sep 19, 2024
2 parents a2ae617 + 0534cd4 commit eea5386
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions btp/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,13 @@ def update_options(self):
if self.check_animation_only: self.check_animation_only.setChecked(self.option_animation_only)
if self.check_remove_hidden: self.check_remove_hidden.setChecked(self.option_remove_hidden)
if self.option_preset == 0:
qt.disable(self.group_export_range, self.check_t_pose, self.check_animation_only)
qt.enable(self.check_hik_data, self.check_profile_data)
qt.disable(self.group_export_range, self.check_animation_only)
qt.enable(self.check_t_pose)
elif self.option_preset == 1:
qt.disable(self.check_t_pose)
qt.enable(self.group_export_range, self.check_animation_only, self.check_hik_data, self.check_profile_data)
qt.enable(self.group_export_range, self.check_animation_only)
elif self.option_preset == 2:
qt.disable(self.group_export_range, self.check_hik_data, self.check_profile_data, self.check_animation_only)
qt.disable(self.group_export_range, self.check_animation_only)
qt.enable(self.check_t_pose)

def fetch_options(self):
Expand Down

0 comments on commit eea5386

Please sign in to comment.