summaryrefslogtreecommitdiff
path: root/plugingui/label.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2017-02-12 11:07:22 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2017-02-12 11:07:22 +0100
commitcec1d9ea562e3d52c98f1219db5e186943f2f0d6 (patch)
tree3a66ff06ef16cce96e215644032e6c9fac2cbe8a /plugingui/label.cc
parentdc33f15a6b968139779c2b7d2003d3ef6e7d5748 (diff)
Refactor/introduce widget and windiow redraw/dirty mechanism to eradicate unnecessary rendering passes during event handling.
Diffstat (limited to 'plugingui/label.cc')
-rw-r--r--plugingui/label.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/label.cc b/plugingui/label.cc
index 2ff4f36..781dbca 100644
--- a/plugingui/label.cc
+++ b/plugingui/label.cc
@@ -39,7 +39,7 @@ Label::Label(Widget *parent)
void Label::setText(const std::string& text)
{
_text = text;
- repaintEvent(nullptr);
+ redraw();
}
void Label::setAlignment(TextAlignment alignment)