Commit 340e1147 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: make sure that the messages panel is updated nicely, when on screen

parent 4191f06e
......@@ -2317,6 +2317,8 @@ end:
{
if( [o_notification object] == o_msgs_panel )
{
[self updateMessageArray];
id o_msg;
NSEnumerator * o_enum;
......@@ -2335,6 +2337,12 @@ end:
}
}
- (void)windowDidUpdate:(NSNotification *)o_notification
{
if( [o_notification object] == o_msgs_panel )
[self updateMessageArray];
}
- (void)updateMessageArray
{
int i_start, i_stop;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment