Rename _init_filter_entry to _init_upper_controls.
To better represent its new dual purpose.
This commit is contained in:
parent
fba5a0f87d
commit
5161d28c31
1 changed files with 2 additions and 2 deletions
4
PGUI.pyw
4
PGUI.pyw
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue