You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Oliver Deakin (JIRA)" <ji...@apache.org> on 2007/08/06 12:01:59 UTC

[jira] Resolved: (HARMONY-4482) [classlib][swing] JSlider track size in Harmony is smaller then in RI

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

Oliver Deakin resolved HARMONY-4482.
------------------------------------

    Resolution: Fixed

Thanks Dmitry - patch applied at repo revision r563083. Please check it was applied as expected.

> [classlib][swing] JSlider track size in Harmony is smaller then in RI
> ---------------------------------------------------------------------
>
>                 Key: HARMONY-4482
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4482
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Dmitry Irlyanov
>            Assignee: Oliver Deakin
>            Priority: Minor
>         Attachments: comparison.JPG, H4482-BasicSliderUI.patch
>
>
> JSlider thumb can move from-side-to-side in the following example in RI, but can't in Harmony (see attached picture)
> import javax.swing.JFrame;
> import javax.swing.JSlider;
> import javax.swing.SwingConstants;
> public class SliderTest {
>     public static void main(String[] args) {
>         JFrame frame = new JFrame("Test"); //$NON-NLS-1$
>         frame.add(new JSlider(SwingConstants.HORIZONTAL, 0, 100, 50));
>         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
>         frame.setSize(100, 150);
>         frame.setVisible(true);
>     }
> }

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