diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-27 21:01:03 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-27 21:01:03 +1100 |
| commit | 09a4d66a1cca1bd56fcdafe9d782d1fff98f41f8 (patch) | |
| tree | ae4fe4ed21d3bc147f65b662f3ffcf6f8df6f81c /src/components | |
| parent | c16a0deca99dfa68e036c72bd4dc23441177db40 (diff) | |
Allow rectSepLeaves to both start and endrect-sepd-leaves
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Settings.vue | 17 |
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> |
