aboutsummaryrefslogtreecommitdiff
path: root/dw/outofflowmgr.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-05-29 23:30:00 +0200
committerSebastian Geerken <devnull@localhost>2014-05-29 23:30:00 +0200
commitf9ce17839903ef10002f19a0c758dfeb828ae11a (patch)
treefd233d84a28d7214418624c548ad76ec6af39944 /dw/outofflowmgr.cc
parente1b61ef1378520a68cb288b6b3c322f70f2a6a41 (diff)
Removed size hints.
Diffstat (limited to 'dw/outofflowmgr.cc')
-rw-r--r--dw/outofflowmgr.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc
index ea089cdb..9526764f 100644
--- a/dw/outofflowmgr.cc
+++ b/dw/outofflowmgr.cc
@@ -2097,7 +2097,7 @@ void OutOfFlowMgr::ensureFloatSize (Float *vloat)
DBG_OBJ_MSGF ("resize.oofm", 1, "about to set absolute width: %d",
width);
width = adjustFloatWidth (width, &extremes);
- vloat->getWidget()->setWidth (width);
+ //vloat->getWidget()->setWidth (width);
} else if (cssWidth == LENGTH_AUTO || isPerLength (cssWidth)) {
// It is important that the width of the *CB* is not
// larger than its minimal width, when the latter is set
@@ -2136,7 +2136,7 @@ void OutOfFlowMgr::ensureFloatSize (Float *vloat)
width = adjustFloatWidth (width, &extremes);
}
- vloat->getWidget()->setWidth (width);
+ //vloat->getWidget()->setWidth (width);
} else
DBG_OBJ_MSG ("resize.oofm", 1,
"setting width: <b>relative length? may be a bug</b>");
@@ -2170,7 +2170,7 @@ void OutOfFlowMgr::ensureFloatSize (Float *vloat)
int width = vloat->size.width;
DBG_OBJ_MSGF ("resize.oofm", 1, "new width: %d", width);
width = adjustFloatWidth (width, &extremes);
- vloat->getWidget()->setWidth (width);
+ //vloat->getWidget()->setWidth (width);
vloat->getWidget()->sizeRequest (&vloat->size);
DBG_OBJ_MSGF ("resize.oofm", 1, "sizeRequest (2) => %d * (%d + %d)",
vloat->size.width, vloat->size.ascent, vloat->size.descent);