Rename Keys.Room.(previous/next)_urgent setting

to (previous/next)_highlight, to match the new terminology used from the
previous notification settings commit.
This commit is contained in:
miruka
2021-01-05 11:03:09 -04:00
parent 1017d02a83
commit a33902e382
2 changed files with 8 additions and 6 deletions

View File

@@ -264,12 +264,12 @@ HListView {
}
HShortcut {
sequences: window.settings.Keys.Rooms.previous_urgent
sequences: window.settings.Keys.Rooms.previous_highlight
onActivated: cycleUnreadRooms(false, true) && showItemLimiter.restart()
}
HShortcut {
sequences: window.settings.Keys.Rooms.next_urgent
sequences: window.settings.Keys.Rooms.next_highlight
onActivated: cycleUnreadRooms(true, true) && showItemLimiter.restart()
}