修改按键绑定
parent
f96b663bbe
commit
f61099ecad
|
@ -177,12 +177,10 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handle_key_mod_down() {
|
handle_key_mod_down() {
|
||||||
this.isModDown = true
|
if (!this.isModDown) this.isModDown = true
|
||||||
},
|
},
|
||||||
handle_key_mod_up() {
|
handle_key_mod_up() {
|
||||||
setTimeout(() => {
|
if (this.isModDown) this.isModDown = false
|
||||||
this.isModDown = false
|
|
||||||
}, 100)
|
|
||||||
},
|
},
|
||||||
handle_key_mod_f_down() {
|
handle_key_mod_f_down() {
|
||||||
if (this.visible) this.$refs.dom_input.focus()
|
if (this.visible) this.$refs.dom_input.focus()
|
||||||
|
|
Loading…
Reference in New Issue