-
-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
bugSomething isn't workingSomething isn't working
Description
ok, slightly complex, but the app starts out with two panes shown, the left and middle panes. the user can opt to show the third pane on the right, which pops up at 10%. So far so good. However, if you touch the slider between the left and middle panes, the middle pane snaps to zero size. The only way to re-adjust it is to drag the right pane just a bit. Then, it's possible to adjust the size of the left and middle panes. It's far from fatal - and I won't stop using the package - it's great - but it's not ideal.
Here's the bit of code I'm using:
<Splitpanes on:resized={resize} >
<Pane size={initialPaneSize} >
<canvas id="renderCanvas" touch-action="pan-x pan-y pinch-zoom" bind:this={canvas}> </canvas>
<div class="tinfo" bind:this={tinfo}>
<TurtleInfo/>
</div>
</Pane>
<Pane snapSize=20>
<LSExplorer/>
</Pane>
{#if $showExamples}
<Pane size=10 maxSize=20>
<Examples/>
</Pane>
{/if}
</Splitpanes>

When right pane opens:

After trying to adjust left and middle panes:

Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working