#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Sat, 29 Dec 2018 12:50:13 +0100
changeset 3631 b7ed78d91bbb
parent 3629 3b7a40bf90cb
child 3632 aafb3c154b6d
#BUGFIX by cg class: Tools::ProjectBuilderAssistantApplication changed: #runBuildProcess:
Tools__ProjectBuilderAssistantApplication.st
--- a/Tools__ProjectBuilderAssistantApplication.st	Tue Oct 30 16:46:41 2018 +0100
+++ b/Tools__ProjectBuilderAssistantApplication.st	Sat Dec 29 12:50:13 2018 +0100
@@ -2305,10 +2305,15 @@
     self assert:makeOutputWindow model == self makeOutputHolder.
 
     ActivityNotification handle:[:ex |
-        ex messageText notNil ifTrue:[
+        |msg|
+        
+        (msg := ex messageText) notNil ifTrue:[
             makeOutputWindow endEntry.
             makeOutputWindow cr.
-            makeOutputWindow nextPutLine:(ex messageText withColor:Color white on:Color blue).
+            makeOutputWindow nextPutLine:(
+                                "/ msg withColor:Color white on:Color blue
+                                msg withColor:Color blue
+                             ).
             makeOutputWindow endEntry.
         ].
         ex proceed.
@@ -2323,7 +2328,10 @@
 
             makeOutputWindow endEntry.
             makeOutputWindow cr.
-            makeOutputWindow nextPutLine:(ex description withColor:Color white on:Color red).
+            makeOutputWindow nextPutLine:(
+                    ex description withColor:Color white on:Color red
+                    "/ ex description withColor:Color red darkened
+                ).
             makeOutputWindow endEntry.
             Debugging == true ifTrue:[ ex reject ].
             ex proceed.
@@ -2338,6 +2346,7 @@
     "
 
     "Modified: / 07-06-2016 / 11:00:01 / cg"
+    "Modified (comment): / 29-12-2018 / 12:51:51 / Claus Gittinger"
 !
 
 selectedApplicationChanged