提交 836edef5 编写于 作者: S Serge Rider

QM log viewer coloring fix

上级 82ab69ee
......@@ -677,6 +677,10 @@ public class QueryLogViewer extends Viewer implements QMMetaListener, DBPPrefere
{
for (Iterator<QMMStatementExecuteInfo> i = savepoint.getExecutions(); i.hasNext(); ) {
QMMStatementExecuteInfo exec = i.next();
if (exec.hasError()) {
// Do not update color of failed executions (it has to be red)
continue;
}
TableItem item = objectToItemMap.get(exec.getObjectId());
if (item != null && !item.isDisposed()) {
item.setFont(getObjectFont(event));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册