mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Fix previews getting sorted above normal rooms
This commit is contained in:
parent
74128cf8bd
commit
e9a0f0a89e
1 changed files with 3 additions and 3 deletions
|
@ -796,9 +796,9 @@ RoomlistModel::setCurrentRoom(const QString &roomid)
|
|||
namespace {
|
||||
enum NotificationImportance : short
|
||||
{
|
||||
ImportanceDisabled = -3,
|
||||
NoPreview = -2,
|
||||
Preview = -1,
|
||||
NoPreview = -3,
|
||||
Preview = -2,
|
||||
ImportanceDisabled = -1,
|
||||
AllEventsRead = 0,
|
||||
NewMessage = 1,
|
||||
NewMentions = 2,
|
||||
|
|
Loading…
Reference in a new issue