Skip to content

Commit

Permalink
intellihide: enable/disable unredirect when dock shows/hides
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky authored and 3v1n0 committed Apr 8, 2024
1 parent 1322cf7 commit d6c0b6b
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions docking.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@ const DockedDash = GObject.registerClass({
this._autohideIsEnabled = null;
this._intellihideIsEnabled = null;

// This variable counts how many times Meta.disable_unredirect_for_display() is called
// to help restore the original state when intelihide is disabled.
this._disableUnredirectCount = 0;

// Create intellihide object to monitor windows overlapping
this._intellihide = new Intellihide.Intellihide(this.monitorIndex);

Expand Down Expand Up @@ -481,6 +485,8 @@ const DockedDash = GObject.registerClass({
if (this._triggerTimeoutId)
GLib.source_remove(this._triggerTimeoutId);

this._restoreUnredirect();

// Remove barrier timeout
if (this._removeBarrierTimeoutId > 0)
GLib.source_remove(this._removeBarrierTimeoutId);
Expand Down Expand Up @@ -662,6 +668,12 @@ const DockedDash = GObject.registerClass({
]);
}

_restoreUnredirect() {
for (let i = 0; i < this._disableUnredirectCount; i++)
Meta.enable_unredirect_for_display(global.display);
this._disableUnredirectCount = 0;
}

/**
* This is call when visibility settings change
*/
Expand All @@ -680,10 +692,12 @@ const DockedDash = GObject.registerClass({
else
this.remove_style_class_name('autohide');

if (this._intellihideIsEnabled)
if (this._intellihideIsEnabled) {
this._intellihide.enable();
else
} else {
this._intellihide.disable();
this._restoreUnredirect();
}

this._updateDashVisibility();
}
Expand Down Expand Up @@ -813,6 +827,10 @@ const DockedDash = GObject.registerClass({
}

_animateIn(time, delay) {
if (this._intellihideIsEnabled) {
Meta.disable_unredirect_for_display(global.display);
this._disableUnredirectCount++;
}
this._dockState = State.SHOWING;
this.dash.iconAnimator.start();
this._delayedHide = false;
Expand Down Expand Up @@ -850,6 +868,10 @@ const DockedDash = GObject.registerClass({
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
onComplete: () => {
this._dockState = State.HIDDEN;
if (this._intellihideIsEnabled && this._disableUnredirectCount > 0) {
Meta.enable_unredirect_for_display(global.display);
this._disableUnredirectCount--;
}
// Remove queued barried removal if any
if (this._removeBarrierTimeoutId > 0)
GLib.source_remove(this._removeBarrierTimeoutId);
Expand Down

0 comments on commit d6c0b6b

Please sign in to comment.