Procházet zdrojové kódy

fix: dialog.ask cursor position at the end

micha před 2 roky
rodič
revize
9629dbb6bc
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      _LibreLightDesk.py

+ 1 - 1
_LibreLightDesk.py

@@ -166,7 +166,7 @@ class Dialog():
         self.e.config(highlightcolor= "red")
         #self.e_txt.set(str(initialvalue)+"<")
         self.e_txt.set(str(initialvalue))
-        #self.e.icursor(999)
+        self.e.icursor(999)
         self.e.selection_range(0, 999)#"end")
         
         self.e.bind("<Key>",self.event)