screenshot: Remove _dragDevice
It went unused since
21cc534add
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2139>
This commit is contained in:
parent
d21ef29ca5
commit
0d1f6b0eb9
@ -236,7 +236,6 @@ var UIAreaSelector = GObject.registerClass({
|
|||||||
// Clutter.BUTTON_SECONDARY or the string "touch" to identify the source
|
// Clutter.BUTTON_SECONDARY or the string "touch" to identify the source
|
||||||
// of the drag operation.
|
// of the drag operation.
|
||||||
this._dragButton = 0;
|
this._dragButton = 0;
|
||||||
this._dragDevice = null;
|
|
||||||
this._dragSequence = null;
|
this._dragSequence = null;
|
||||||
|
|
||||||
this._areaIndicator = new UIAreaIndicator();
|
this._areaIndicator = new UIAreaIndicator();
|
||||||
@ -384,7 +383,6 @@ var UIAreaSelector = GObject.registerClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
this._dragButton = 0;
|
this._dragButton = 0;
|
||||||
this._dragDevice = null;
|
|
||||||
this._dragSequence = null;
|
this._dragSequence = null;
|
||||||
|
|
||||||
if (this._dragCursor === Meta.Cursor.CROSSHAIR &&
|
if (this._dragCursor === Meta.Cursor.CROSSHAIR &&
|
||||||
@ -497,10 +495,7 @@ var UIAreaSelector = GObject.registerClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (this._dragButton) {
|
if (this._dragButton) {
|
||||||
const device = event.device;
|
|
||||||
|
|
||||||
this._dragGrab = global.stage.grab(this);
|
this._dragGrab = global.stage.grab(this);
|
||||||
this._dragDevice = device;
|
|
||||||
this._dragSequence = sequence;
|
this._dragSequence = sequence;
|
||||||
|
|
||||||
this.emit('drag-started');
|
this.emit('drag-started');
|
||||||
|
Loading…
Reference in New Issue
Block a user