mirror of
https://github.com/atom/atom.git
synced 2026-02-15 09:05:58 -05:00
Code style corrections
This commit is contained in:
@@ -156,13 +156,13 @@ class Pane {
|
||||
getFlexScale () { return this.flexScale }
|
||||
|
||||
increaseSize () {
|
||||
if (this.getContainer().getPanes().length > 1){
|
||||
if (this.getContainer().getPanes().length > 1) {
|
||||
this.setFlexScale(this.getFlexScale() * 1.1)
|
||||
}
|
||||
}
|
||||
|
||||
decreaseSize () {
|
||||
if (this.getContainer().getPanes().length > 1){
|
||||
if (this.getContainer().getPanes().length > 1) {
|
||||
this.setFlexScale(this.getFlexScale() / 1.1)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user