You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/03/07 13:18:24 UTC

[jira] Closed: (HARMONY-1487) [classlib][swing] JSlider is always enabled

     [ https://issues.apache.org/jira/browse/HARMONY-1487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov closed HARMONY-1487.
------------------------------------


closed

> [classlib][swing] JSlider is always enabled
> -------------------------------------------
>
>                 Key: HARMONY-1487
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1487
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Dmitry A. Durnev
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-1487-BasicSliderUI.patch
>
>
> Compile & run the following code:
> import javax.swing.JFrame;
> import javax.swing.JSlider;
> public class JSliderTest {
>     public static void main(String[] args) {
>         JFrame f = new JFrame();
>         JSlider s = new JSlider();
>         s.setEnabled(false);
>         f.getContentPane().add(s);
>         f.setSize(100, 100);
>         f.show();
>     }
> }
> On RI JFrame with disabled JSlider inside appears. On Harmony JSlider is still enabled: it looks enabled
> & actually responds to user input.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.