소스 검색

fix: deiconify() if window is minimized

micha 8 달 전
부모
커밋
f6ef31c9c2
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      _LibreLightDesk.py

+ 1 - 0
_LibreLightDesk.py

@@ -1819,6 +1819,7 @@ class WindowManager():
         w = self.windows[name]
 
         if not str(type(w)).startswith("<class 'function'>"): 
+            w.tk.deiconify()
             w.tk.attributes('-topmost',True)
             w.tk.attributes('-topmost',False)
             w.tk.update_idletasks()