* src/frontends/qt2/QGraphicsDialog.C:

- allow double values in the bounding box widgets (bug 3055, 3056).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16663 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-01-13 10:32:25 +00:00
parent 534e97edf3
commit b90cacb659
3 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-01-13 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QGraphicsDialog.C: allow double values in the bounding
box widgets (bug 3055, 3056).
2007-01-08 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QBibtexDialog.C: sanitize button behaviour (bug 2895).

View File

@ -52,10 +52,10 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form)
angle->setValidator(new QDoubleValidator(-360, 360, 2, angle));
lbX->setValidator(new QIntValidator(lbX));
lbY->setValidator(new QIntValidator(lbY));
rtX->setValidator(new QIntValidator(rtX));
rtY->setValidator(new QIntValidator(rtY));
lbX->setValidator(new QDoubleValidator(lbX));
lbY->setValidator(new QDoubleValidator(lbY));
rtX->setValidator(new QDoubleValidator(rtX));
rtY->setValidator(new QDoubleValidator(rtY));
displayscale->setValidator(new QIntValidator(displayscale));
height->setValidator(unsignedLengthValidator(height));

View File

@ -179,6 +179,10 @@ What's new
- The natbib labels weren't always displayed correctly when opening
a document. This is fixed.
- Allow double values for graphics' bounding box parameters again
(bug 3055). This also fixes problems with older LyX files
(bug 3066) [qt only].
* Build/installation:
- Allow autoconf 2.60 and 2.61 for building.