Skip to content

Commit

Permalink
BUGFIX: fix a regression found by Yuri Rage, the windows asking to co…
Browse files Browse the repository at this point in the history
…py the parameters where no longer getting triggered on program open
  • Loading branch information
amilcarlucas committed Jun 11, 2024
1 parent 5d6fad9 commit a2613d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion MethodicConfigurator/frontend_tkinter_parameter_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@ def __init__(self, current_file: str, flight_controller: FlightController,

self.__create_parameter_area_widgets()

self.root.after(50, self.__please_read_the_docs(self.root))
# trigger a table update to ask the user what to do in the case this file needs special actions
self.root.after(10, self.on_param_file_combobox_change(None, True))

# this one should be on top of the previous one hence the longer time
self.root.after(100, self.__please_read_the_docs(self.root))
self.root.mainloop()

def __create_conf_widgets(self, version: str):
Expand Down

0 comments on commit a2613d8

Please sign in to comment.