Fix the sliding down of the window due to the reparenting caused by the window manager decorations. #75709
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It fixes the sliding down of the window due to the reparenting by the window manager which is done after mapping the window in X11.
fixes #75292 and many more. It also slows down the thread as it waits for the window manager to complete the decorations. It would be optimal to start a new thread that will execute this solution and then terminate itself. I would love to have the dev's opinion on this.
Edit: It also doesn't work if the window manager takes more time in decoration than the waiting time given which can be solved by increasing the waiting time but it also slows the program even more.
Edit: It also just slows down the tiling window manager as XMoveWindow does not affect them.
Edit: Another solution as discussed in the review with no delay #76040