diff options
author | djee <djee@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 18:57:22 +0000 |
---|---|---|
committer | djee <djee@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-10 18:57:22 +0000 |
commit | 2cfc09079c92fa5cfe8643097689919359562d02 (patch) | |
tree | f982d60aa675d0aa76be5289c71e041f601bb2d5 /libjava/java/awt/Component.java | |
parent | 3e9f41bd10456f6d8117aadec53b5cbaadf537a2 (diff) | |
download | ppe42-gcc-2cfc09079c92fa5cfe8643097689919359562d02.tar.gz ppe42-gcc-2cfc09079c92fa5cfe8643097689919359562d02.zip |
2004-02-10 David Jee <djee@redhat.com>
* java/awt/BorderLayout.java
(calcCompSize): Invisible components get zero dimensions.
* java/awt/Button.java
(setLabel): Set actionCommand.
* java/awt/Component.java
(show): Invalidate component and parent container.
(hide): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/Component.java')
-rw-r--r-- | libjava/java/awt/Component.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/java/awt/Component.java b/libjava/java/awt/Component.java index 0b1e9612b04..3d2afc9c78b 100644 --- a/libjava/java/awt/Component.java +++ b/libjava/java/awt/Component.java @@ -879,6 +879,7 @@ public abstract class Component this.visible = true; if (peer != null) peer.setVisible(true); + invalidate(); } /** @@ -905,6 +906,7 @@ public abstract class Component if (peer != null) peer.setVisible(false); this.visible = false; + invalidate(); } /** |