[F] Fix 10 keys

This commit is contained in:
Hykilpikonna
2021-12-11 19:45:33 -05:00
parent 551a41aaac
commit da5db309ff
+3 -2
View File
@@ -17,7 +17,7 @@
<span class="colors-text">Colors</span> <span class="colors-text">Colors</span>
<div class="color" v-for="(c, i) in colors" :key="i" :style="{'background-color': c ?? '#333'}" <div class="color" v-for="(c, i) in colors" :key="i" :style="{'background-color': c ?? '#333'}"
@click="e => openPicker(e, c)"> @click="e => openPicker(e, c)">
<div>{{i + 1}}</div> <div>{{(i + 1) % 10}}</div>
</div> </div>
</div> </div>
</div> </div>
@@ -49,7 +49,7 @@ export default class NewHome extends KeyHandler
created(): void created(): void
{ {
this.keybinds.Escape = _ => this.pickerColor = '' this.keybinds.Escape = _ => this.pickerColor = ''
range(10).forEach(i => this.keybinds[i.toString()] = _ => editor.color = this.colors[i]) range(10).forEach(i => this.keybinds[((i + 1) % 10)+''] = _ => editor.color = this.colors[i])
} }
mounted(): void mounted(): void
@@ -82,6 +82,7 @@ export default class NewHome extends KeyHandler
#editor-controls #editor-controls
position: absolute position: absolute
z-index: 2 z-index: 2
user-select: none
// Positioning // Positioning
top: 20px top: 20px