mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
(Herbert): nit-picking!
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3977 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b9e3315265
commit
4036639aa5
@ -1,3 +1,8 @@
|
||||
2002-04-08 Herbert Voss <voss@perce.de>
|
||||
|
||||
* insetgraphic.C (write): write the rotating angle as
|
||||
a float as is. test only for != 0.0
|
||||
|
||||
2002-04-11 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* insettext.C: new function ciy() and use it for setting inset_y.
|
||||
|
@ -198,7 +198,7 @@ void InsetGraphicsParams::Write(ostream & os) const
|
||||
os << "\tkeepAspectRatio\n";
|
||||
if (rotate)
|
||||
os << "\trotate\n";
|
||||
if (!lyx::float_equal(rotateAngle, 0.0, 0.001))
|
||||
if (rotateAngle != 0.0)
|
||||
os << "\trotateAngle " << rotateAngle << '\n';
|
||||
if (!rotateOrigin.empty())
|
||||
os << "\trotateOrigin " << rotateOrigin << '\n';
|
||||
|
Loading…
Reference in New Issue
Block a user