Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
jtaala committed Aug 7, 2024
2 parents ca81d2a + 7a1c3da commit 80666c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/paperwm/PaperWM",
"settings-schema": "org.gnome.shell.extensions.paperwm",
"shell-version": [ "45", "46" ],
"version-name": "46.16.0",
"version-name": "46.16.1",
"donations": {
"buymeacoffee": "jaytaala",
"patreon": "valpackett"
Expand Down
2 changes: 1 addition & 1 deletion tiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -4961,7 +4961,7 @@ export function centerWindow(metaWindow, horizontal = true, vertical = false) {
let targetY = vertical ? workArea.y + Math.round((workArea.height - frame.height) / 2) : frame.y;
targetY = Math.max(targetY, workArea.y);
if (space.indexOf(metaWindow) === -1) {
Scratch.easeScratch(metaWindow, targetX + monitor.x, targetY);
Scratch.easeScratch(metaWindow, targetX + monitor.x, targetY + monitor.y);
} else {
move_to(space, metaWindow, {
x: targetX,
Expand Down

0 comments on commit 80666c0

Please sign in to comment.