mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +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 {
|
namespace {
|
||||||
enum NotificationImportance : short
|
enum NotificationImportance : short
|
||||||
{
|
{
|
||||||
ImportanceDisabled = -3,
|
NoPreview = -3,
|
||||||
NoPreview = -2,
|
Preview = -2,
|
||||||
Preview = -1,
|
ImportanceDisabled = -1,
|
||||||
AllEventsRead = 0,
|
AllEventsRead = 0,
|
||||||
NewMessage = 1,
|
NewMessage = 1,
|
||||||
NewMentions = 2,
|
NewMentions = 2,
|
||||||
|
|
Loading…
Reference in a new issue