more visible outdated_color;
authorwenzelm
Mon, 05 Sep 2011 23:51:16 +0200
changeset 44723 81f683feaead
parent 44722 a8331fb5c959
child 44729 32e22fda8c70
more visible outdated_color;
src/Tools/jEdit/src/isabelle_markup.scala
--- a/src/Tools/jEdit/src/isabelle_markup.scala	Mon Sep 05 23:26:41 2011 +0200
+++ b/src/Tools/jEdit/src/isabelle_markup.scala	Mon Sep 05 23:51:16 2011 +0200
@@ -24,7 +24,6 @@
   def get_color(s: String): Color = ColorFactory.getInstance.getColor(s)
 
   val outdated_color = new Color(238, 227, 227)
-  val outdated1_color = new Color(238, 227, 227, 50)
   val running_color = new Color(97, 0, 97)
   val running1_color = new Color(97, 0, 97, 100)
   val unfinished_color = new Color(255, 160, 160)
@@ -57,7 +56,7 @@
   def status_color(snapshot: Document.Snapshot, command: Command): Option[Color] =
   {
     val state = snapshot.command_state(command)
-    if (snapshot.is_outdated) Some(outdated1_color)
+    if (snapshot.is_outdated) Some(outdated_color)
     else
       Isar_Document.command_status(state.status) match {
         case Isar_Document.Forked(i) if i > 0 => Some(running1_color)