tuned color (PG 4.0);
authorwenzelm
Sun, 06 Sep 2009 16:21:01 +0200
changeset 34716 b8f2b44529fd
parent 34715 826e476947f9
child 34717 3f32e08bbb6c
tuned color (PG 4.0);
src/Tools/jEdit/src/jedit/TheoryView.scala
--- a/src/Tools/jEdit/src/jedit/TheoryView.scala	Sun Sep 06 15:43:02 2009 +0200
+++ b/src/Tools/jEdit/src/jedit/TheoryView.scala	Sun Sep 06 16:21:01 2009 +0200
@@ -24,12 +24,12 @@
 
 object TheoryView
 {
-  
-  def choose_color(cmd: Command, doc: ProofDocument): Color = {
-    cmd.status(doc) match {
+  def choose_color(command: Command, doc: ProofDocument): Color =
+  {
+    command.status(doc) match {
       case Command.Status.UNPROCESSED => new Color(255, 228, 225)
       case Command.Status.FINISHED => new Color(234, 248, 255)
-      case Command.Status.FAILED => new Color(255, 192, 192)
+      case Command.Status.FAILED => new Color(255, 106, 106)
       case _ => Color.red
     }
   }