Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 83579 invoked from network); 7 Mar 2007 12:18:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Mar 2007 12:18:46 -0000 Received: (qmail 90997 invoked by uid 500); 7 Mar 2007 12:18:54 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 90896 invoked by uid 500); 7 Mar 2007 12:18:54 -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 90887 invoked by uid 99); 7 Mar 2007 12:18:54 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Mar 2007 04:18:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= 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; Wed, 07 Mar 2007 04:18:45 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E7EC171408C for ; Wed, 7 Mar 2007 04:18:24 -0800 (PST) Message-ID: <31673243.1173269904946.JavaMail.root@brutus> Date: Wed, 7 Mar 2007 04:18:24 -0800 (PST) From: "Alexei Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Closed: (HARMONY-1487) [classlib][swing] JSlider is always enabled 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-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.