summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-05-28 15:18:00 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-06-02 17:39:51 -0400
commitf6b5385495ca281f16d19c64aa6423e57857875c (patch)
treefdc5f40e87b5a542f9f26910fd029f45929bc731
parent524e2df708e612d1ecdbd7dd3a6be3ac37805b6d (diff)
messageTray: Squash together some duplicated code
https://bugzilla.gnome.org/show_bug.cgi?id=731118
-rw-r--r--js/ui/messageTray.js26
1 files changed, 12 insertions, 14 deletions
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 948a5b88..971c451a 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -2268,6 +2268,16 @@ const MessageTray = new Lang.Class({
this._grabHelper.addActor(corner.actor);
},
+ _resetNotificationLeftTimeout: function() {
+ this._useLongerNotificationLeftTimeout = false;
+ if (this._notificationLeftTimeoutId) {
+ Mainloop.source_remove(this._notificationLeftTimeoutId);
+ this._notificationLeftTimeoutId = 0;
+ this._notificationLeftMouseX = -1;
+ this._notificationLeftMouseY = -1;
+ }
+ },
+
_onNotificationHoverChanged: function() {
if (this._notificationWidget.hover == this._notificationHovered)
return;
@@ -2277,13 +2287,7 @@ const MessageTray = new Lang.Class({
// No dwell inside notifications at the bottom of the screen
this._cancelTrayDwell();
- this._useLongerNotificationLeftTimeout = false;
- if (this._notificationLeftTimeoutId) {
- Mainloop.source_remove(this._notificationLeftTimeoutId);
- this._notificationLeftTimeoutId = 0;
- this._notificationLeftMouseX = -1;
- this._notificationLeftMouseY = -1;
- }
+ this._resetNotificationLeftTimeout();
if (this._showNotificationMouseX >= 0) {
let actorAtShowNotificationPosition =
@@ -2719,13 +2723,7 @@ const MessageTray = new Lang.Class({
this._notificationUnfocusedId = 0;
}
- this._useLongerNotificationLeftTimeout = false;
- if (this._notificationLeftTimeoutId) {
- Mainloop.source_remove(this._notificationLeftTimeoutId);
- this._notificationLeftTimeoutId = 0;
- this._notificationLeftMouseX = -1;
- this._notificationLeftMouseY = -1;
- }
+ this._resetNotificationLeftTimeout();
if (animate) {
this._tween(this._notificationWidget, '_notificationState', State.HIDDEN,