Sayad Uddin Tahsin
Sayad Uddin Tahsin
> Take this down basically the creators of this are abusing their power and arent treating people who help contribute and maintain the project so unlike this unstar this star...
> @Sayad-Uddin-Tahsin Use this: `root.attributes("-topmost", True)` but it makes my window to overlap other windows! I don’t want so, but I want it to not disappeare once desktop button is...
> @Sayad-Uddin-Tahsin Then simply use the overrideredirect method > > `root.overrideredirect()` Using `root.overrideredirect()` also seems hides the windows on Desktop Button Press! Doesn’t it hide the top control bars? I...
@Akascape Do you know any way to just detect the Desktop Button Click? so that I can `force_focus` that on that event which will achieve the effect I'm looking for?
@Akascape Seems using this method: ```python def unminimize(window: ctk.CTk): if not window.winfo_ismapped(): window.state('withdrawn') window.state('normal') window.attributes("-topmost", True) window.attributes("-topmost", False) root.bind("", lambda e: root.after(500, lambda: unminimize(root))) ``` does what I'm looking for...