Garst's patch for the off-by-two problem

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4137 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-05-08 08:25:25 +00:00
parent d570c8dab8
commit b6de61eb21
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,10 @@
2002-05-03 Angus Leeming <a.leeming@ic.ac.uk>
2002-05-08 Garst Reese <reese@isn.net>
* xformsGImage.C (rotate): work-around xforms bug when rotating by
* FormMathsDeco.C: fix offset to normal size decos.
2002-05-03 Angus Leeming <a.leeming@ic.ac.uk>
* xformsGImage.C (rotate): work-around xforms bug when rotating by
270 degs.
2002-05-02 Herbert Voss <voss@perce.de>

View File

@ -82,7 +82,7 @@ bool FormMathsDeco::input(FL_OBJECT * ob, long)
//if (ob == dialog_->bmtable_deco1)
// deco_ += 0;
if (ob == dialog_->bmtable_deco2)
deco_ += 10;
deco_ += 12;
apply();
return true;
}