Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8105442

LinearGradient is not applied to Strikethrough & underline of the text

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • fx1.0
    • javafx
    • None
    • Windows Vista Home Premium SP1

      I have a text node , which contains underline , strike through & overline. I have applied a LinearGradient as the fill . LinearGradient is applied for the overline , but where as strike through & overline is not having LinearGradient. I have a screen shot . I tested this with Sep25 build with jdk6u10 b31 promoted build.

      import javafx.stage.Frame;
      import javafx.scene.text.*;
      import javafx.scene.*;
      import javafx.scene.paint.*;
      import javafx.scene.input.MouseEvent;
      import java.lang.System;

      var text : Text = Text {
      content : "This is javafx"
      x : 100
      y : 100
      strikethrough : true
      underline : true
      overline : true
      font : Font {
      size : 48
      }
      fill: LinearGradient {
      startX: 0.0
      startY: 0.0
      endX: 1.0
      endY: 0.0
      proportional: true
      stops: [
      Stop { offset: 0.0 color: Color.BLACK },
      Stop { offset: 0.8 color: Color.RED }
      Stop { offset: 1.0 color: Color.GREEN }
      ]
      }

      onMouseEntered : function(e:MouseEvent ) : Void {
      System.out.println("Mouse Entered");
      }
      onMouseExited : function(e:MouseEvent ) : Void {
      System.out.println("Mouse exited");
      }
      }


      Frame {
      scene : Scene {
      content : [text]
      }
      visible : true
      }

        1. screenshot-1.jpg
          24 kB
          Lawrence Premkumar

            flar Jim Graham
            lpremkumajfx Lawrence Premkumar (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: