[gnome-shell] appDisplay: Rename _lastOvershootTimeoutId
- From: Robert Mader <rmader src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] appDisplay: Rename _lastOvershootTimeoutId
- Date: Wed, 10 Aug 2022 15:28:52 +0000 (UTC)
commit 692de0eb952beabe1ef484dbf341516152378f54
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Tue Aug 9 18:31:46 2022 -0300
appDisplay: Rename _lastOvershootTimeoutId
Trivial renaming to _overshootTimeoutId. No functional changes.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2335>
js/ui/appDisplay.js | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index 3b43f0d339..9ede9a6900 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -637,7 +637,7 @@ var BaseAppView = GObject.registerClass({
() => this._redisplay(), this);
// Drag n' Drop
- this._lastOvershootTimeoutId = 0;
+ this._overshootTimeoutId = 0;
this._delayedMoveData = null;
this._dragBeginId = 0;
@@ -838,9 +838,9 @@ var BaseAppView = GObject.registerClass({
}
_resetOvershoot() {
- if (this._lastOvershootTimeoutId)
- GLib.source_remove(this._lastOvershootTimeoutId);
- this._lastOvershootTimeoutId = 0;
+ if (this._overshootTimeoutId)
+ GLib.source_remove(this._overshootTimeoutId);
+ this._overshootTimeoutId = 0;
}
_handleDragOvershoot(dragEvent) {
@@ -856,7 +856,7 @@ var BaseAppView = GObject.registerClass({
return;
}
- if (this._lastOvershootTimeoutId > 0)
+ if (this._overshootTimeoutId > 0)
return;
let targetPage;
@@ -868,14 +868,14 @@ var BaseAppView = GObject.registerClass({
if (targetPage < 0 || targetPage >= this._grid.nPages)
return; // don't go beyond first/last page
- this._lastOvershootTimeoutId =
+ this._overshootTimeoutId =
GLib.timeout_add(GLib.PRIORITY_DEFAULT, OVERSHOOT_TIMEOUT, () => {
this._resetOvershoot();
this.goToPage(targetPage);
return GLib.SOURCE_REMOVE;
});
- GLib.Source.set_name_by_id(this._lastOvershootTimeoutId,
- '[gnome-shell] this._lastOvershootTimeoutId');
+ GLib.Source.set_name_by_id(this._overshootTimeoutId,
+ '[gnome-shell] this._overshootTimeoutId');
}
_onDragBegin() {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]