Skip to content

Commit

Permalink
IMPROVEMENT: Remove the serial port selection on the parameter file e…
Browse files Browse the repository at this point in the history
…ditor window

It is not needed, it might confuse users
  • Loading branch information
amilcarlucas committed Jun 3, 2024
1 parent 4f4cb36 commit 81132a0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions MethodicConfigurator/frontend_tkinter_parameter_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@ def __create_conf_widgets(self, version: str):
self.file_selection_combobox.bind("<<ComboboxSelected>>", self.on_param_file_combobox_change)
self.file_selection_combobox.pack(side=tk.TOP, anchor=tk.NW, pady=(4, 0))

# Create a new frame inside the config_subframe for the flight controller connection selection label and combobox
csw = ConnectionSelectionWidgets(self, config_subframe, self.flight_controller,
destroy_parent_on_connect=False, download_params_on_connect=True)
csw.container_frame.pack(side=tk.RIGHT, fill="x", expand=False, padx=(6, 4))

image_label = BaseWindow.put_image_in_label(config_frame, LocalFilesystem.application_logo_filepath())
image_label.pack(side=tk.RIGHT, anchor=tk.NE, padx=(4, 4), pady=(4, 0))
image_label.bind("<Button-1>", lambda event: show_about_window(self.root, version))
Expand Down

0 comments on commit 81132a0

Please sign in to comment.