13
0

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:
David Robillard 2009-10-22 20:05:15 +00:00
parent 02f2755e60
commit 7919491f27

View File

@ -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();
}
}