fix: inspector icon should be disabled as default (#4093)

This commit is contained in:
Hakjoon Sim
2022-11-08 08:31:30 +09:00
committed by GitHub
parent c32161f7ca
commit e44a08278b

View File

@@ -41,7 +41,7 @@ export class ActionManager extends EventTarget {
'select-all': { enabled: false, shortcut: 'Alt+A', text: 'Select all' },
'show-about-dialog': { enabled: true, text: 'About' },
'show-inspector': {
enabled: true,
enabled: false,
shortcut: 'Alt+I',
text: 'Torrent Inspector',
},