Allow reserved keyboard shortcuts to be changed

This commit is contained in:
mr. M 2024-10-18 23:10:27 +02:00
parent 7a8579c913
commit c79de8b430
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB

View file

@ -494,7 +494,7 @@ class KeyShortcut {
}
isUserEditable() {
if (!this.#id || this.#internal || this.#reserved || (this.#group == FIREFOX_SHORTCUTS_GROUP && this.#disabled)) {
if (!this.#id || this.#internal || (this.#group == FIREFOX_SHORTCUTS_GROUP && this.#disabled)) {
return false;
}
return true;