#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 13 Mar 2019 21:49:13 +0100
changeset 18681 c0aa65849475
parent 18680 33d1e87a2d3b
child 18682 3f16db52ed11
#REFACTORING by cg class: ProcessMonitorV2 changed: #fillItemInformationIn:
ProcessMonitorV2.st
--- a/ProcessMonitorV2.st	Wed Mar 13 21:47:28 2019 +0100
+++ b/ProcessMonitorV2.st	Wed Mar 13 21:49:13 2019 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2003 by eXept Software AG
 	      All Rights Reserved
@@ -3673,7 +3671,7 @@
     state := aProcess state.
     running := (state == #run and:[aProcess == Processor interruptedProcess]).
     stateColor := (state == #run)
-                        ifTrue:[ Color green darkened ]
+                        ifTrue:[ Color darkGreen ]
                         ifFalse:[
                             (state == #debug or:[state == #stopped])
                                 ifTrue:[ Color red ]
@@ -3731,7 +3729,7 @@
     ].
 
     "Modified: / 17-08-2011 / 11:04:32 / cg"
-    "Modified: / 12-03-2019 / 18:09:21 / Claus Gittinger"
+    "Modified: / 13-03-2019 / 21:13:08 / Claus Gittinger"
 !
 
 fillItemInformationIn:processItem with:aProcess inArray:weakArrayWithProcesses atIndex:processInstanceIndexInWeakArray