Skip to content

Commit

Permalink
Fix problem with styles that append elements together visually
Browse files Browse the repository at this point in the history
git-svn-id: http://source.colloquy.info/svn/trunk@5444 cc480944-b4dd-0310-b5e3-89908df9b951
  • Loading branch information
zach committed Mar 28, 2012
1 parent 9e1500e commit 51c2c2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Views/JVStyleView.m
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,8 @@ - (void) _appendMessages {
if( _nextAppendMessageInterval < JVMessageIntervalMinimum )
_nextAppendMessageInterval = JVMessageIntervalMinimum;
}

_requiresFullMessage = NO;
}

- (void) _forceAppendMessages {
Expand Down Expand Up @@ -513,8 +515,6 @@ - (BOOL) appendChatMessage:(JVChatMessage *) message {

[self performSelector:@selector( _appendMessages ) withObject:nil afterDelay:delay];
[self performSelector:@selector( _forceAppendMessages ) withObject:nil afterDelay:1.];

_requiresFullMessage = NO;
}

return ( [result length] ? YES : NO );
Expand Down

0 comments on commit 51c2c2e

Please sign in to comment.