aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-17 23:22:54 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-17 23:22:54 +1000
commitb22b5e6c0ce07cfc62bed354744178458abcbf35 (patch)
treeae3c978721a1385507a47225dff7087c3e4d1bb6 /src/App.vue
parentb77f9028cc7c65a31b19d46f6aa123f8d4eaa40f (diff)
Fix tile-flash-above-settings-modal bug
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index b0f9c43..fb921d7 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -54,7 +54,7 @@ const defaultLytOpts: LayoutOptions = {
layoutType: 'sweep', //'sqr' | 'rect' | 'sweep'
rectMode: 'auto first-row', //'horz' | 'vert' | 'linear' | 'auto' | 'auto first-row'
sweepMode: 'left', //'left' | 'top' | 'shorter' | 'auto'
- sweptNodesPrio: 'linear', //'linear' | 'sqrt' | 'pow-2/3'
+ sweptNodesPrio: 'sqrt', //'linear' | 'sqrt' | 'pow-2/3'
sweepToParent: 'prefer', //'none' | 'prefer' | 'fallback'
};
const defaultUiOpts = {
@@ -789,7 +789,7 @@ export default defineComponent({
<help-modal v-if="helpOpen" :uiOpts="uiOpts"
@help-modal-close="helpOpen = false" @start-tutorial="onStartTutorial"/>
</transition>
- <settings-modal v-if="settingsOpen" :lytOpts="lytOpts" :uiOpts="uiOpts"
+ <settings-modal v-if="settingsOpen" :lytOpts="lytOpts" :uiOpts="uiOpts" class="z-10"
@settings-close="settingsOpen = false" @reset-settings="onResetSettings"
@layout-option-change="relayoutWithCollapse" @tree-change="onTreeChange"/>
<!-- Overlay used to prevent interaction and capture clicks -->