notificationDaemon: Focus the new window before destroying the notification
Destroying the notification will make the key focus be reset to NULL, which means that gnome-shell will try to focus the MRU window, thinking the user is done interacting and wants to go back to whatever they were doing. Unfortunately, since we focus two windows at the same time, they will have the same timestamp, meaning that the window that actually gets focused will be a race as to whoever responds to their WM_TAKE_FOCUS event last. If we explicitly set the focus beforehand, then gnome-shell will believe it got key focus taken away from it, and won't try to focus the MRU when the key focus drops to NULL. https://bugzilla.gnome.org/show_bug.cgi?id=703265
This commit is contained in:
parent
91878dd52c
commit
55edfd2e4a
@ -779,8 +779,8 @@ const Source = new Lang.Class({
|
||||
},
|
||||
|
||||
open: function(notification) {
|
||||
this.destroyNonResidentNotifications();
|
||||
this.openApp();
|
||||
this.destroyNonResidentNotifications();
|
||||
},
|
||||
|
||||
_lastNotificationRemoved: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user