tuned colors;
authorwenzelm
Mon, 24 Feb 2014 19:33:39 +0100
changeset 55726 945ad7eaf37f
parent 55725 9d605a21d7ec
child 55727 7e330ae052bb
tuned colors;
src/Tools/jEdit/etc/options
src/Tools/jEdit/src/rich_text_area.scala
--- a/src/Tools/jEdit/etc/options	Mon Feb 24 14:58:40 2014 +0100
+++ b/src/Tools/jEdit/etc/options	Mon Feb 24 19:33:39 2014 +0100
@@ -85,7 +85,7 @@
 option keyword1_color : string = "006699FF"
 option keyword2_color : string = "009966FF"
 option keyword3_color : string = "0099FFFF"
-option caret_invisible_color : string = "99999980"
+option caret_invisible_color : string = "50000080"
 
 option tfree_color : string = "A020F0FF"
 option tvar_color : string = "A020F0FF"
--- a/src/Tools/jEdit/src/rich_text_area.scala	Mon Feb 24 14:58:40 2014 +0100
+++ b/src/Tools/jEdit/src/rich_text_area.scala	Mon Feb 24 19:33:39 2014 +0100
@@ -456,6 +456,7 @@
     {
       robust_rendering { rendering =>
         val caret_range = get_caret_range(true)
+        val caret_color = text_area.getPainter.getCaretColor
 
         for (i <- 0 until physical_lines.length) {
           if (physical_lines(i) != -1) {
@@ -494,7 +495,7 @@
             if (!hyperlink_area.is_active) {
               def paint_completion(range: Text.Range) {
                 for (r <- JEdit_Lib.gfx_range(text_area, range)) {
-                  gfx.setColor(get_caret_color(rendering))
+                  gfx.setColor(caret_color)
                   gfx.drawRect(r.x, y + i * line_height, r.length - 1, line_height - 1)
                 }
               }