diff options
-rw-r--r-- | dw/oofpositionedmgr.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dw/oofpositionedmgr.cc b/dw/oofpositionedmgr.cc index 709a5b91..8257e0b9 100644 --- a/dw/oofpositionedmgr.cc +++ b/dw/oofpositionedmgr.cc @@ -50,7 +50,13 @@ OOFPositionedMgr::~OOFPositionedMgr () void OOFPositionedMgr::sizeAllocateStart (OOFAwareWidget *caller, Allocation *allocation) { - containerAllocation = *allocation; + DBG_OBJ_ENTER ("resize.oofm", 0, "sizeAllocateStart", + "%p, (%d, %d, %d * (%d + %d))", + caller, allocation->x, allocation->y, allocation->width, + allocation->ascent, allocation->descent); + if (caller == container) + containerAllocation = *allocation; + DBG_OBJ_LEAVE (); } void OOFPositionedMgr::sizeAllocateEnd (OOFAwareWidget *caller) |