Commit: afec5a5ec93ef3781d73d2ac21727cd1e6b43643
Author: Mateusz Grzeliński
Date:   Fri Aug 14 14:59:15 2020 +0200
Branches: soc-2020-info-editor
https://developer.blender.org/rBafec5a5ec93ef3781d73d2ac21727cd1e6b43643

Fix log formatting

Use new line was checked incorrectly

===================================================================

M       source/blender/editors/space_info/info_draw_clog.c

===================================================================

diff --git a/source/blender/editors/space_info/info_draw_clog.c 
b/source/blender/editors/space_info/info_draw_clog.c
index 4e1f56f4388..2e0ccd9cd2c 100644
--- a/source/blender/editors/space_info/info_draw_clog.c
+++ b/source/blender/editors/space_info/info_draw_clog.c
@@ -215,7 +215,7 @@ void clog_textview_line_get(struct TextViewContext *tvc,
   if (sinfo->log_format & INFO_CLOG_SHOW_FUNCTION) {
     BLI_dynstr_appendf(dynStr, "%s ", record->function);
   }
-  if (sinfo->log_format & sinfo->use_log_message_new_line) {
+  if (sinfo->use_log_message_new_line) {
     BLI_dynstr_append(dynStr, "\n");
   }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to