Commit afd8ee69 authored by David Fuhrmann's avatar David Fuhrmann

macosx: increase maximum number of messages for the messages panel

This is needed to a complete log as some modules like mkv are very
verbose. The actual size is not so critical anymore as messages
are only arriving if the panel is open.
parent 4e6c4d38
...@@ -201,7 +201,7 @@ static VLCDebugMessageVisualizer *_sharedMainInstance = nil; ...@@ -201,7 +201,7 @@ static VLCDebugMessageVisualizer *_sharedMainInstance = nil;
[_msg_lock lock]; [_msg_lock lock];
if ([_msg_arr count] > 600) { if ([_msg_arr count] > 10000) {
[_msg_arr removeObjectAtIndex: 0]; [_msg_arr removeObjectAtIndex: 0];
[_msg_arr removeObjectAtIndex: 1]; [_msg_arr removeObjectAtIndex: 1];
} }
......
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