diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-02 19:24:57 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-01-21 14:51:32 +0100 |
commit | ea6883e9ba851db5e6557b1d71d1268f6ab25c64 (patch) | |
tree | 7bc0778d2b42a4040552fb44b4b7c011b5f09989 /plugingui/widget.cc | |
parent | b2f7b6be4c6695fa741f2eafaef3af5bce5c30c2 (diff) |
Make resize events fdo the right thing. Add move event.
Diffstat (limited to 'plugingui/widget.cc')
-rw-r--r-- | plugingui/widget.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/widget.cc b/plugingui/widget.cc index 4b1d1f7..476746e 100644 --- a/plugingui/widget.cc +++ b/plugingui/widget.cc @@ -123,7 +123,7 @@ void Widget::resize(int width, int height) _width = width; _height = height; pixbuf.realloc(width, height); - + repaintEvent(nullptr); sizeChangeNotifier(width, height); } |