(old)
| 11 | |
| 12 | |
| 13 | changeLayout(old) { |
| 14 | return async function (workspace: unknown) { |
| 15 | layoutChanging = true; |
| 16 | try { |
| 17 | // Don't consider hover popovers part of the workspace while it's changing |
| 18 | await old.call(this, workspace); |
| 19 | } finally { |
| 20 | layoutChanging = false; |
| 21 | } |
| 22 | }; |
| 23 | }, |
| 24 | |
| 25 | getLeaf(old) { |
| 26 | //Patch get leaf to always return root leaf if leaf is a flow block |
nothing calls this directly
no outgoing calls
no test coverage detected