diff --git a/WINGs/wlabel.c b/WINGs/wlabel.c index 39e9507c..6e158046 100644 --- a/WINGs/wlabel.c +++ b/WINGs/wlabel.c @@ -167,6 +167,10 @@ WMSetLabelTextColor(WMLabel *lPtr, WMColor *color) if (lPtr->textColor) WMReleaseColor(lPtr->textColor); lPtr->textColor = WMRetainColor(color); + + if (lPtr->view->flags.realized) { + paintLabel(lPtr); + } }