aboutsummaryrefslogtreecommitdiff
path: root/dw/outofflowmgr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dw/outofflowmgr.cc')
-rw-r--r--dw/outofflowmgr.cc14
1 files changed, 9 insertions, 5 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc
index 222b4b42..f504e216 100644
--- a/dw/outofflowmgr.cc
+++ b/dw/outofflowmgr.cc
@@ -1153,11 +1153,15 @@ void OutOfFlowMgr::drawAbsolutelyPositioned (View *view, Rectangle *area)
* leads sometimes to a cleaner rendering.
*/
bool OutOfFlowMgr::isWidgetOutOfFlow (Widget *widget)
-{
- return
- widget->getStyle()->vloat != FLOAT_NONE ||
- widget->getStyle()->position == POSITION_ABSOLUTE ||
- widget->getStyle()->position == POSITION_FIXED;
+{
+ // This is only half-baked, will perhaps be reactivated:
+ //
+ //return
+ // widget->getStyle()->vloat != FLOAT_NONE ||
+ // widget->getStyle()->position == POSITION_ABSOLUTE ||
+ // widget->getStyle()->position == POSITION_FIXED;
+
+ return isWidgetHandledByOOFM (widget);
}
bool OutOfFlowMgr::isWidgetHandledByOOFM (Widget *widget)