We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f772b6d commit 279657eCopy full SHA for 279657e
1 file changed
src/ui/dash.ts
@@ -261,6 +261,14 @@ export class AuroraDash extends Dash {
261
return;
262
}
263
264
+ // Recalculate the container size to account for icon changes that
265
+ // occurred while the dock was hidden (e.g. apps opened/closed during
266
+ // IntelliHide BLOCKED state). Without this, the container can retain
267
+ // a stale width and clip the last icons or overlap the show-apps button.
268
+ if (this._workArea) {
269
+ this.applyWorkArea(this._workArea);
270
+ }
271
+
272
// Reset all transforms BEFORE making visible so Clutter never sees the
273
// actor at a stale position (avoids "needs an allocation" warnings and
274
// prevents _queueTargetBoxUpdate from reading a wrong transformed Y).
0 commit comments