From 5161d28c3172dc96f36c475002227bb684a213c5 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 11 Jan 2022 00:05:34 -0800 Subject: [PATCH] Rename _init_filter_entry to _init_upper_controls. To better represent its new dual purpose. --- PGUI.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PGUI.pyw b/PGUI.pyw index d699eca..4bf0275 100644 --- a/PGUI.pyw +++ b/PGUI.pyw @@ -29,7 +29,7 @@ class PGUILauncher(tkinter.Frame): def __init__(self, parent): super().__init__(parent, bg=MAIN_BG) - self._init_filter_entry() + self._init_upper_controls() self._init_buttons() self.ready_to_launch = None @@ -67,7 +67,7 @@ class PGUILauncher(tkinter.Frame): ) 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 # own frame element. Thanks Kevin # https://stackoverflow.com/a/51823093/5430534