mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
cleanup: Avoid unnecessary parentheses
Extra parentheses usually add noise rather than clarity, so avoid them. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/805
This commit is contained in:
parent
ebf77748a8
commit
e44adb92cf
59 changed files with 199 additions and 200 deletions
|
|
@ -194,7 +194,7 @@ var LayoutManager = GObject.registerClass({
|
|||
_init() {
|
||||
super._init();
|
||||
|
||||
this._rtl = (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL);
|
||||
this._rtl = Clutter.get_default_text_direction() == Clutter.TextDirection.RTL;
|
||||
this.monitors = [];
|
||||
this.primaryMonitor = null;
|
||||
this.primaryIndex = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue