Use a more reasonable default size for log window.
Only pop up log window if message level is not INFO (i.e. iff it is WARNING, ERROR, or FATAL). git-svn-id: svn://localhost/ardour2/branches/3.0@5865 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
02f2755e60
commit
7919491f27
@ -86,7 +86,7 @@ UI::UI (string namestr, int *argc, char ***argv)
|
||||
UI::signal_pipe_callback,
|
||||
this);
|
||||
|
||||
errors = new TextViewer (850,100);
|
||||
errors = new TextViewer (800,600);
|
||||
errors->text().set_editable (false);
|
||||
errors->text().set_name ("ErrorText");
|
||||
|
||||
@ -509,7 +509,7 @@ UI::process_error_message (Transmitter::Channel chn, const char *str)
|
||||
|
||||
display_message (prefix, prefix_len, ptag, mtag, str);
|
||||
|
||||
if (!errors->is_visible()) {
|
||||
if (!errors->is_visible() && chn != Transmitter::Info) {
|
||||
toggle_errors();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user