@@ -228,7 +228,7 @@ def _enum_proc(h, lparam):
228228FONT_ITALIC = os .path .join (SCRIPT_DIR , "Fonts" , "Nunito-Italic.ttf" )
229229FONT_SEMIBOLD = os .path .join (SCRIPT_DIR , "Fonts" , "Nunito-SemiBold.ttf" )
230230LICENSE_TEXT = os .path .join (SCRIPT_DIR , "LICENSE.txt" )
231- VERSION = "1.9.1 "
231+ VERSION = "1.9.2 "
232232# Load all the font files for Tkinter (on Windows)
233233if platform .system () == "Windows" :
234234 fonts = [FONT_REGULAR , FONT_MEDIUM , FONT_BOLD , FONT_LIGHT , FONT_ITALIC , FONT_SEMIBOLD ]
@@ -1635,7 +1635,7 @@ def copy_text(text, msg="Copied to clipboard!"):
16351635 user_frame = ctk .CTkFrame (left , fg_color = CARD , border_width = 2 , border_color = CARD_HOVER , corner_radius = 4 , height = 30 )
16361636 user_frame .pack (fill = "x" , pady = 2 )
16371637 user_label = ctk .CTkLabel (user_frame , text = f"🗐 User: { user or '' } " , anchor = "w" ,
1638- text_color = ACCENT_DIM , font = ("Nunito" , 12 ), width = 50 , wraplength = 200 , height = 10 ) # Increased font size
1638+ text_color = ACCENT_DIM , font = ("Nunito" , 12 ), width = 50 , wraplength = 200 , height = 10 , cursor = "hand2" ) # Increased font size
16391639 user_frame .pack_propagate (0 )
16401640 user_label .pack (side = "left" , padx = 4 )
16411641 user_label .bind ("<Button-1>" , lambda e , u = user : copy_text (u , "Username copied!" ))
@@ -1645,7 +1645,7 @@ def copy_text(text, msg="Copied to clipboard!"):
16451645 pwd_var = StringVar (value = "*" * len (pwd ) if pwd else "" )
16461646 # Note: pwd_label now holds the reference to the CTkLabel object
16471647 pwd_label = ctk .CTkLabel (pwd_frame , text = f"🗐 Password: { pwd_var .get ()} " , anchor = "w" ,
1648- text_color = TEXT , font = ("Nunito" , 12 ), width = 50 , wraplength = 200 , height = 10 ) # Increased font size
1648+ text_color = TEXT , font = ("Nunito" , 12 ), width = 50 , wraplength = 200 , height = 10 , cursor = "hand2" ) # Increased font size
16491649 pwd_frame .pack_propagate (0 )
16501650 pwd_label .pack (side = "left" , padx = 4 )
16511651 pwd_label .bind ("<Button-1>" , lambda e , p = pwd : copy_text (p , "Password copied!" ))
0 commit comments