workspace: Use operator shorthand
Shorthands like a += b are well-established, so prefer them over the less concise a = a + b. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/710
This commit is contained in:
parent
9f11fbad16
commit
1da9937453
@ -948,7 +948,7 @@ var LayoutStrategy = class {
|
||||
y += row.height * row.additionalScale + this._rowSpacing;
|
||||
}
|
||||
|
||||
compensation = compensation / 2;
|
||||
compensation /= 2;
|
||||
|
||||
for (let i = 0; i < rows.length; i++) {
|
||||
let row = rows[i];
|
||||
|
Loading…
Reference in New Issue
Block a user