Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 60588 invoked from network); 13 Jul 2007 16:57:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Jul 2007 16:57:26 -0000 Received: (qmail 5700 invoked by uid 500); 13 Jul 2007 16:57:29 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 5507 invoked by uid 500); 13 Jul 2007 16:57:28 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 5497 invoked by uid 99); 13 Jul 2007 16:57:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jul 2007 09:57:28 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jul 2007 09:57:25 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id DAF027141FE for ; Fri, 13 Jul 2007 09:57:04 -0700 (PDT) Message-ID: <21986374.1184345824892.JavaMail.jira@brutus> Date: Fri, 13 Jul 2007 09:57:04 -0700 (PDT) From: "Dmitry Irlyanov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-4445) [classlib][swing] JSlider thumb can't move if JSlider.getMaximum()=Integer.MAX_VALUE In-Reply-To: <26131669.1184258705836.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dmitry Irlyanov updated HARMONY-4445: ------------------------------------- Attachment: (was: H4555-BasicSliderUI.patch) > [classlib][swing] JSlider thumb can't move if JSlider.getMaximum()=Integer.MAX_VALUE > ------------------------------------------------------------------------------------ > > Key: HARMONY-4445 > URL: https://issues.apache.org/jira/browse/HARMONY-4445 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Dmitry Irlyanov > Priority: Minor > Attachments: H4555-BasicSliderUI.patch > > > JSlider thumb can't move if JSlider.getMaximum()=Integer.MAX_VALUE > The situation represented in the following test: > import java.awt.GridLayout; > 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("SliderTest"); //$NON-NLS-1$ > frame.setLayout(new GridLayout(2,1)); > frame.add(new JSlider(SwingConstants.HORIZONTAL, 0, Integer.MAX_VALUE, > 50)); > frame.add(new JSlider(SwingConstants.HORIZONTAL, 0, 100, 50)); > frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); > frame.setSize(150, 100); > frame.setVisible(true); > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.