Skip to content

Commit

Permalink
Fix object initialization order
Browse files Browse the repository at this point in the history
  • Loading branch information
DaelonSuzuka committed Jun 11, 2024
1 parent 651ae43 commit 18d20cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/stagehand/actions/device_trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ def set_data(self, data):
self.refresh_devices()
if 'device' in data:
self.device_selector.setCurrentText(data['device'])
self.event_selector.setCurrentText(data['event'])
self.device_changed(data['device'])
self.event_selector.setCurrentText(data['event'])

def get_data(self):
return {
Expand Down

0 comments on commit 18d20cb

Please sign in to comment.