Rename _init_filter_entry to _init_upper_controls.

To better represent its new dual purpose.
This commit is contained in:
voussoir 2022-01-11 00:05:34 -08:00
parent fba5a0f87d
commit 5161d28c31
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -29,7 +29,7 @@ class PGUILauncher(tkinter.Frame):
def __init__(self, parent): def __init__(self, parent):
super().__init__(parent, bg=MAIN_BG) super().__init__(parent, bg=MAIN_BG)
self._init_filter_entry() self._init_upper_controls()
self._init_buttons() self._init_buttons()
self.ready_to_launch = None self.ready_to_launch = None
@ -67,7 +67,7 @@ class PGUILauncher(tkinter.Frame):
) )
self.buttons.append(button) self.buttons.append(button)
def _init_filter_entry(self): def _init_upper_controls(self):
# The only way to add padding around the text entry is to put it in its # The only way to add padding around the text entry is to put it in its
# own frame element. Thanks Kevin # own frame element. Thanks Kevin
# https://stackoverflow.com/a/51823093/5430534 # https://stackoverflow.com/a/51823093/5430534