diff options
Diffstat (limited to 'dw/widget.cc')
-rw-r--r-- | dw/widget.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dw/widget.cc b/dw/widget.cc index 82677cc8..e6c2aa76 100644 --- a/dw/widget.cc +++ b/dw/widget.cc @@ -164,6 +164,10 @@ void Widget::queueDrawArea (int x, int y, int width, int height) x, y, width, height); DBG_OBJ_MSG_START (); + _MSG("Widget::queueDrawArea alloc(%d %d %d %d) wid(%d %d %d %d)\n", + allocation.x, allocation.y, + allocation.width, allocation.ascent + allocation.descent, + x, y, width, height); if (layout) layout->queueDraw (x + allocation.x, y + allocation.y, width, height); |