Skip to content

Commit

Permalink
show version
Browse files Browse the repository at this point in the history
  • Loading branch information
hirusha-adi committed Jan 24, 2024
1 parent 795fa0e commit 5d9978c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions search.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ def run_progress(self):
class DocxSearchApp:
def __init__(self, root):
self.root = root
self.root.title("Docx Search GUI")
self.root.title("Docx-Search GUI v0.1")
self.root.resizable(width=False, height=False)

title_font = font.Font(family="Helvetica", size=16, weight="bold")

self.title_label = ttk.Label(root, text="Docx-Search GUI", font=title_font)
self.title_label = ttk.Label(root, text="Docx-Search GUI v0.1", font=title_font)
self.title_label.grid(row=2, column=0, padx=3, pady=3, columnspan=5)

self.target_word_label = ttk.Label(root, text="Query:")
Expand Down

0 comments on commit 5d9978c

Please sign in to comment.