Move mouse cursor after Alt+Tab when using switch-applications
#12
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.
Hi there,
This should fix #7, making the extension work with the
switch-applicationsshortcut.Basically, it inherits from
AppSwitcherPopupinimports.ui.altTaband modifies its_finishmethod. This is analogous to the current modification ofMain.activateWindowfor theswitch-windowsshortcut becauseMain.activateWindowis called inside the_finishmethod of the classWindowSwitcherPopup.I would suggest updating the
switch-windowsapproach by usingWindowSwitcherPopupinheritance because it is easier to understand, in my opinion, and it is analogous to the approach in this pull request; take a look at lucasresck@fede46d as an example. If this PR is approved, I can work on that!I would like to use this opportunity to also thank you for this extension. Based on yours, I created the Alt+Tab Scroll Workaround to approach a very annoying problem involving mouse scroll and
Alt+Tabon GNOME. Also, thanks for @vakokako (included in the commits) who basically solved this issue but in my extension (lucasresck#2, lucasresck#8).