Skip to content

Commit

Permalink
Update gui_gui.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Thinkseal authored Nov 14, 2024
1 parent daad999 commit abe5fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions versions/gui_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def copy_to_clipboard(text):
def add_text(*args):
new_text = translate_text.get()
x_size=int(8.5*len(new_text)+240)
root.geometry(f"{x_size}x{380}")
root.geometry(f"{x_size}x{350}")
reversed_text['text'] = converter.reverse_text(new_text)
flipped_text['text'] = converter.text_flip(new_text)
enchanted_text['text'] = converter.enchant_text(new_text)
Expand Down Expand Up @@ -47,7 +47,7 @@ def add_copy_buttons():
ico = Image.open('images/icon.ico')
photo = ImageTk.PhotoImage(ico)
root.wm_iconphoto(False, photo)
root.geometry("240x380")
root.geometry("240x350")
copy_icon = Image.open('images/content_copy.png')
copy_icon = ImageTk.PhotoImage(copy_icon)

Expand Down

0 comments on commit abe5fb1

Please sign in to comment.