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

Alert dialog: Text overrun inconsistency between OS

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 8u40
    • javafx
    • jruby-1.7.19
      java 8u40
      OSX/Fedora

      On OSX, if the line of text supplied to contentText is too wide for an Alert dialog, the text wraps indefinitely.
      On linux, if the line of text supplied to contentText has a whitespace character and the remaining text is a large token, ellipses are shown.

      A minimal test case to reproduce:

      {noformat}
      java_import 'javafx.scene.control.Alert'
      require 'jrubyfx'

      class OverrunInconsistency < JRubyFX::Application
        def start(stage)
          with(stage, width: 1000, height: 1000, title: 'Hello JRubyFX') do
            layout_scene do
              alert = Alert.new(Alert::AlertType::ERROR)
              alert.title = 'Alert'
              alert.header_text = 'header'
              alert.content_text = "OSX will wrap, linux will ellipses: " + "#{__FILE__}" * 30
              alert.show_and_wait
            end
            show
          end
        end
      end

      OverrunInconsistency.launch
      {noformat}

      This is jruby, but I'm fairly confident this issue will exist in plain java land.

            jgiles Jonathan Giles
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: