mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
This makes fluctuation of inset hopefully better (#147).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3418 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c7c443e5e2
commit
0a1aedb25a
@ -1,3 +1,7 @@
|
||||
2002-01-18 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* inset.C (getMaxWidth): try to fix fluctuation of collapsable insets.
|
||||
|
||||
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
||||
|
||||
* insettabular.C (getMaxWidthOfCell): use LyXLength::inPixels
|
||||
|
@ -337,16 +337,12 @@ int UpdatableInset::getMaxWidth(BufferView * bv, UpdatableInset const *) const
|
||||
if (topx_set && owner()) {
|
||||
w -= top_x;
|
||||
w += owner()->x();
|
||||
}
|
||||
#if 0 // already handled above now!!!
|
||||
else if (!owner()) {
|
||||
// give some left margin this should be made better!
|
||||
// Idea: LyXText::giveLeftMargin(Inset * inset) will search the
|
||||
// inset in the text and return the LeftMargin of that row!
|
||||
lyxerr << "w -= 20\n";
|
||||
} else if (owner()) {
|
||||
// this is needed as otherwise we might have a too large inset if
|
||||
// its top_x afterwards changes to LeftMargin so we try to put at
|
||||
// least the default margin as top_x
|
||||
w -= 20;
|
||||
}
|
||||
#endif
|
||||
if (w < 10) {
|
||||
w = 10;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user