diff --git a/EDMarketConnector.py b/EDMarketConnector.py index ef0b3ce9d..c34f0cf49 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -614,6 +614,7 @@ def open_window(systray: 'SysTrayIcon') -> None: self.status_row.columnconfigure(0, weight=99) self.status_row.columnconfigure(1, weight=1) + # Bottom 'status' line. self.status = tk.Label(self.status_row, name='status', anchor=tk.W) self.status.grid(row=0, column=0, sticky=tk.W) @@ -625,10 +626,6 @@ def open_window(systray: 'SysTrayIcon') -> None: ttk_grip.grid(row=0, column=1, sticky=tk.E) ####################################################################### - # Bottom 'status' line. - self.status = tk.Label(frame, name='status', anchor=tk.W) - self.status.grid(columnspan=2, sticky=tk.EW) - for child in frame.winfo_children(): child.grid_configure(padx=self.PADX, pady=( sys.platform != 'win32' or isinstance(child, tk.Frame)) and 2 or 0)