mirror of
https://github.com/morgan9e/dash-to-panel
synced 2026-04-14 00:04:17 +09:00
Handle duplicate grab-op-end signals
This commit is contained in:
@@ -63,7 +63,7 @@ var Intellihide = new Lang.Class({
|
||||
this._focusedWindowInfo = null;
|
||||
this._animationDestination = -1;
|
||||
this._pendingUpdate = false;
|
||||
this._dragging = reset ? this._dragging : false;
|
||||
this._dragging = false;
|
||||
this._hoveredOut = false;
|
||||
this._panelAtTop = this._dtpSettings.get_string('panel-position') === 'TOP';
|
||||
|
||||
@@ -139,11 +139,13 @@ var Intellihide = new Lang.Class({
|
||||
],
|
||||
[
|
||||
global.display,
|
||||
[
|
||||
'grab-op-begin',
|
||||
'grab-op-end'
|
||||
],
|
||||
() => this._dragging = !this._dragging
|
||||
'grab-op-begin',
|
||||
() => this._dragging = true
|
||||
],
|
||||
[
|
||||
global.display,
|
||||
'grab-op-end',
|
||||
() => this._dragging = false
|
||||
],
|
||||
[
|
||||
this._panelBox,
|
||||
|
||||
Reference in New Issue
Block a user