mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
* 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:
parent
534e97edf3
commit
b90cacb659
@ -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).
|
||||
|
@ -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));
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user