mobile-friendly #3

Merged
gator merged 22 commits from mobile-friendly into dev 2022-12-04 18:49:16 +01:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit f7c6467941 - Show all commits

View File

@ -1,5 +1,5 @@
<template>
<MenuRow row-title="2D Cellular Automata">
<MenuRow row-title="2D Cellular Automaton">
<div class="form-field">
<label>Start from empty board</label>
<input

View File

@ -49,10 +49,12 @@ export const globalStore = defineStore("globalStore", {
this.draw1d = true;
},
toggleDraw2d() {
this.toggleStop();
this.canDraw = true;
this.draw2d = true;
},
toggleDraw2dLast() {
this.toggleStop();
this.canDraw = true;
this.draw2dLast = true;
},