Code style corrections

This commit is contained in:
Ramon Jimenez
2017-12-21 18:34:56 -07:00
parent 9b1adf8a29
commit fb4f496994

View File

@@ -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)
}
}