From c3bb8b4f1544dc0ee1a700c42fd45b90947659c7 Mon Sep 17 00:00:00 2001 From: Anjok07 <68268275+Anjok07@users.noreply.github.com> Date: Mon, 25 Sep 2023 18:50:23 -0500 Subject: [PATCH] Add files via upload --- UVR.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UVR.py b/UVR.py index 42525e3..dcb4f10 100644 --- a/UVR.py +++ b/UVR.py @@ -3723,7 +3723,7 @@ class MainWindow(TkinterDnD.Tk if is_dnd_compatible else tk.Tk): tabControl.add(tab1, text ='Credits') tabControl.add(tab2, text ='Resources') tabControl.add(tab3, text ='Application License & Version Information') - tabControl.add(tab4, text ='Additional Resources & Credits') + tabControl.add(tab4, text ='Additional Information') tabControl.pack(expand = 1, fill ="both") @@ -3905,7 +3905,7 @@ class MainWindow(TkinterDnD.Tk if is_dnd_compatible else tk.Tk): application_change_log_tab_Frame = tk.Frame(tab4) application_change_log_tab_Frame.grid(row=0,column=0,padx=0,pady=0) - application_change_log_Label = tk.Label(application_change_log_tab_Frame, text='Additional Resources & Credits', font=(MAIN_FONT_NAME, f"{FONT_SIZE_6}", "bold"), justify="center", fg="#f4f4f4") + application_change_log_Label = tk.Label(application_change_log_tab_Frame, text='Additional Information', font=(MAIN_FONT_NAME, f"{FONT_SIZE_6}", "bold"), justify="center", fg="#f4f4f4") application_change_log_Label.grid(row=0,column=0,padx=0,pady=25) application_change_log_Text = tk.Text(application_change_log_tab_Frame, font=(MAIN_FONT_NAME, f"{FONT_SIZE_4}"), fg="white", bg="black", width=72, wrap=tk.WORD if is_windows else tk.CHAR, borderwidth=0)