aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Settings.vue17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/components/Settings.vue b/src/components/Settings.vue
index 97b08d1..30ff0c3 100644
--- a/src/components/Settings.vue
+++ b/src/components/Settings.vue
@@ -83,8 +83,21 @@ export default defineComponent({
</div>
<hr class="border-stone-400"/>
<div>
- <label> <input type="checkbox" v-model="layoutOptions.rectSepLeaves"
- @change="onLayoutOptChg"/> Rect leaves to start </label>
+ Rect leaf separation
+ <ul>
+ <li>
+ <label> <input type="radio" v-model="layoutOptions.rectSepLeaves" value="none"
+ @change="onLayoutOptChg"/> None </label>
+ </li>
+ <li>
+ <label> <input type="radio" v-model="layoutOptions.rectSepLeaves" value="start"
+ @change="onLayoutOptChg"/> To start </label>
+ </li>
+ <li>
+ <label> <input type="radio" v-model="layoutOptions.rectSepLeaves" value="end"
+ @change="onLayoutOptChg"/> To end </label>
+ </li>
+ </ul>
</div>
<hr class="border-stone-400"/>
<div>