What is the difference between raise
, unstick
and unminimize
in DevDocs
raise
moves the window to the top of the stack. Basically what happens when you click on a window that is partially overlapped by some other window.
unminimize
undoes a minimize operation, so if the window is currently hidden, the method unhides it.
stick
makes a window “sticky”, which means it is on all workspaces (the action is called “Always on visible workspace” in the titlebar menu). unstick
undoes that operation, so the window stays on its workspace when you switch between workspaces.
2 Likes