From bd96e6bd5cb7bfc5f30200778ed93b5f7765d991 Mon Sep 17 00:00:00 2001 From: mdb Date: Mon, 23 May 2005 20:37:23 +0000 Subject: [PATCH] Setting the text or alternate color does not need to invalidate the label (and MultiLineLabel does that right before calling render). git-svn-id: https://samskivert.googlecode.com/svn/trunk@1647 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- projects/samskivert/src/java/com/samskivert/swing/Label.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/swing/Label.java b/projects/samskivert/src/java/com/samskivert/swing/Label.java index 4b2c8654..8c1fffee 100644 --- a/projects/samskivert/src/java/com/samskivert/swing/Label.java +++ b/projects/samskivert/src/java/com/samskivert/swing/Label.java @@ -154,7 +154,6 @@ public class Label implements SwingConstants, LabelStyleConstants public void setTextColor (Color color) { _textColor = color; - _layouts = null; } /** @@ -175,7 +174,6 @@ public class Label implements SwingConstants, LabelStyleConstants public void setAlternateColor (Color color) { _alternateColor = color; - _layouts = null; } /**