[gnome-shell-extensions/ws-thumb-fixes: 10/13] window-list: Account for monitor offset in window previews
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell-extensions/ws-thumb-fixes: 10/13] window-list: Account for monitor offset in window previews
- Date: Sat, 21 Nov 2020 00:33:59 +0000 (UTC)
commit 480a194d4ddf918f94ed55db5e2d55a3fe98628e
Author: Florian Müllner <fmuellner gnome org>
Date: Wed Oct 21 20:22:32 2020 +0200
window-list: Account for monitor offset in window previews
extensions/window-list/workspaceIndicator.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/extensions/window-list/workspaceIndicator.js b/extensions/window-list/workspaceIndicator.js
index 698cc9d..3dbfb0c 100644
--- a/extensions/window-list/workspaceIndicator.js
+++ b/extensions/window-list/workspaceIndicator.js
@@ -91,8 +91,8 @@ class WorkspaceLayout extends Clutter.LayoutManager {
Math.round(Math.min(frameRect.width, workArea.width) * hscale),
Math.round(Math.min(frameRect.height, workArea.height) * vscale));
childBox.set_origin(
- Math.round(frameRect.x * hscale),
- Math.round(frameRect.y * vscale));
+ Math.round((frameRect.x - workArea.x) * hscale),
+ Math.round((frameRect.y - workArea.y) * vscale));
child.allocate(childBox);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]