Skip to content

Commit daf4c05

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. (cherry picked from commit 484895e)
1 parent f396ab3 commit daf4c05

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.