Skip to content

Commit 484895e

Browse files
committedNov 1, 2018
[processing] Fix incorrect html used when pushing console command feedback to dialog
And make color less dominant (not bright blue!). We want other more critical messages the be more attention grabbing then the noisy console outputs.
1 parent e83aa5a commit 484895e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/processing/qgsprocessingalgorithmdialogbase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ void QgsProcessingAlgorithmDialogBase::pushDebugInfo( const QString &message )
383383

384384
void QgsProcessingAlgorithmDialogBase::pushConsoleInfo( const QString &info )
385385
{
386-
txtLog->append( QStringLiteral( "<code><span style=\"color:blue\">%1</darkgray></code>" ).arg( formatStringForLog( info.toHtmlEscaped() ) ) );
386+
txtLog->append( QStringLiteral( "<code style=\"color:#777\">%1</code>" ).arg( formatStringForLog( info.toHtmlEscaped() ) ) );
387387
scrollToBottomOfLog();
388388
processEvents();
389389
}

0 commit comments

Comments
 (0)
Please sign in to comment.