Skip to content

Commit

Permalink
fixed up middle tile resizing on threecolumn
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroxoneafour committed Jun 23, 2023
1 parent 859d791 commit b0e3ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/threecolumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class TilingEngine implements Engine.TilingEngine {
this.rightSize += amount;
}
}
while ((this.rightSize + this.leftSize) > 0.69) { // nice
while ((this.rightSize + this.leftSize) > 0.85) {
if (this.rightSize > this.leftSize) {
this.rightSize -= amount;
} else {
Expand Down

0 comments on commit b0e3ea7

Please sign in to comment.