()
| 297 | } |
| 298 | |
| 299 | public updateRightWidth(): void { |
| 300 | if (this.isRightSnapped()) { |
| 301 | this.sepRight = document.body.getBoundingClientRect().width; |
| 302 | } else { |
| 303 | const sepRight = storageGetItem("disassembly-pane-percent"); |
| 304 | this.sepRight = document.body.getBoundingClientRect().width * sepRight; |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | private updateSizes(): void { |
| 309 | this.updateLeftWidth(); |
no test coverage detected