aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-16 14:05:34 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-16 14:05:34 +1000
commit90423f8fc956ebb915d63b834d0fffbc13d6cece (patch)
treecb33d4bb120899fa10fb15a88a2eeb4bcf3864c5 /src/components
parent299f135e2209c2c6c1442865b232ddc2cc863cff (diff)
Add sweep-to-parent 'auto' setting
Diffstat (limited to 'src/components')
-rw-r--r--src/components/SettingsModal.vue17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/components/SettingsModal.vue b/src/components/SettingsModal.vue
index 1f56cfb..20864fd 100644
--- a/src/components/SettingsModal.vue
+++ b/src/components/SettingsModal.vue
@@ -107,8 +107,21 @@ export default defineComponent({
</div>
<hr class="border-stone-400"/>
<div>
- <label> <input type="checkbox" v-model="lytOpts.sweepToParent"
- @change="onLytOptChg"/> Sweep to parent</label>
+ Sweep to parent
+ <ul>
+ <li>
+ <label> <input type="radio" v-model="lytOpts.sweepToParent" value="never"
+ @change="onLytOptChg"/> Never </label>
+ </li>
+ <li>
+ <label> <input type="radio" v-model="lytOpts.sweepToParent" value="always"
+ @change="onLytOptChg"/> Always </label>
+ </li>
+ <li>
+ <label> <input type="radio" v-model="lytOpts.sweepToParent" value="auto"
+ @change="onLytOptChg"/> Auto </label>
+ </li>
+ </ul>
</div>
<hr class="border-stone-400"/>
<div>