diff options
Diffstat (limited to 'src/ui/widget/icon-widget.cpp')
| -rw-r--r-- | src/ui/widget/icon-widget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/icon-widget.cpp b/src/ui/widget/icon-widget.cpp index de4548f11..0e0736371 100644 --- a/src/ui/widget/icon-widget.cpp +++ b/src/ui/widget/icon-widget.cpp @@ -73,14 +73,14 @@ void IconWidget::size_allocate(Gtk::Allocation const &allocation) { Gtk::Widget::size_allocate(allocation); - if (this->is_drawable()) { + if (this->get_is_drawable()) { this->queue_draw(); } } int IconWidget::expose(GdkEventExpose *event) { - if (this->is_drawable()) { + if (this->get_is_drawable()) { paint(&(event->area)); } return true; |
