Skip to content

Commit

Permalink
Buffer List: Orange when buffer has hilight
Browse files Browse the repository at this point in the history
  • Loading branch information
guruz committed Apr 18, 2020
1 parent 15bd0dd commit 9730d51
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions quassel-for-ios/quassel-for-ios/QuasselCoreConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -1468,6 +1468,9 @@ - (void) computeBufferActivityForBuffer:(BufferId*)bufferId
NSLog(@"computeBufferActivityForBuffer %d RETURNING,LASTSEEN %@", idx, message);
*stop = YES;
return;
} else if (message.messageFlag & MessageFlagHilight) {
computedActivity = BufferActivityHighlight;
*stop = YES;
} else if (message.messageType == MessageTypeAction
|| message.messageType == MessageTypePlain) {
computedActivity = BufferActivityNewMessage;
Expand Down

0 comments on commit 9730d51

Please sign in to comment.