()
| 89 | }; |
| 90 | |
| 91 | const getContentSashes = () => { |
| 92 | if (!sidebar.hidden && !auxiliaryBar.hidden) return true; |
| 93 | |
| 94 | if (sidebar.hidden) { |
| 95 | return auxiliaryBar.hidden ? false : [false, true]; |
| 96 | } |
| 97 | |
| 98 | return [true, false]; |
| 99 | }; |
| 100 | |
| 101 | const handleContentChanged = (sizes: number[]) => { |
| 102 | const nextPos: number[] = []; |