From afcaaec3dd31856ab63f1240cc60c906d5943aae Mon Sep 17 00:00:00 2001 From: GordonZhang2024 Date: Fri, 24 May 2024 19:39:48 +0800 Subject: [PATCH] Update the about window --- src/get_help.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/get_help.py b/src/get_help.py index 0e2d134..1b6f9b4 100755 --- a/src/get_help.py +++ b/src/get_help.py @@ -43,10 +43,11 @@ def show_project_info(): Function show_project_info() Show the project infomation """ - info_page = ttk.Window(title='About', themename='lumen') + info_page = ttk.Toplevel(title='About') label = ttk.Label( info_page, text='tkMarker\n', + font=('Sans Mono', 20), ) label.pack()