mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue