修复快捷键设置框内的提示问题
parent
e95553163c
commit
4fe17e556e
|
@ -1,3 +1,4 @@
|
|||
### 修复
|
||||
|
||||
- 修复全局快捷键对桌面歌词无效的问题
|
||||
- 修复快捷键设置框内的提示问题
|
||||
|
|
|
@ -983,7 +983,12 @@ export default {
|
|||
await rendererInvoke(NAMES.hotKey.enable, true)
|
||||
window.isEditingHotKey = false
|
||||
this.isEditHotKey = false
|
||||
const prevInput = hotKeyTargetInput
|
||||
hotKeyTargetInput = null
|
||||
if (prevInput.value == this.$t('view.setting.hot_key_tip_input')) {
|
||||
prevInput.value = newHotKey ? this.formatHotKeyName(newHotKey) : ''
|
||||
return
|
||||
}
|
||||
let config = this.hotKeyConfig[type][info.name]
|
||||
let originKey
|
||||
if (newHotKey) {
|
||||
|
|
Loading…
Reference in New Issue