mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +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>
|
2007-01-08 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
* QBibtexDialog.C: sanitize button behaviour (bug 2895).
|
* QBibtexDialog.C: sanitize button behaviour (bug 2895).
|
||||||
|
@ -52,10 +52,10 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form)
|
|||||||
|
|
||||||
angle->setValidator(new QDoubleValidator(-360, 360, 2, angle));
|
angle->setValidator(new QDoubleValidator(-360, 360, 2, angle));
|
||||||
|
|
||||||
lbX->setValidator(new QIntValidator(lbX));
|
lbX->setValidator(new QDoubleValidator(lbX));
|
||||||
lbY->setValidator(new QIntValidator(lbY));
|
lbY->setValidator(new QDoubleValidator(lbY));
|
||||||
rtX->setValidator(new QIntValidator(rtX));
|
rtX->setValidator(new QDoubleValidator(rtX));
|
||||||
rtY->setValidator(new QIntValidator(rtY));
|
rtY->setValidator(new QDoubleValidator(rtY));
|
||||||
|
|
||||||
displayscale->setValidator(new QIntValidator(displayscale));
|
displayscale->setValidator(new QIntValidator(displayscale));
|
||||||
height->setValidator(unsignedLengthValidator(height));
|
height->setValidator(unsignedLengthValidator(height));
|
||||||
|
@ -179,6 +179,10 @@ What's new
|
|||||||
- The natbib labels weren't always displayed correctly when opening
|
- The natbib labels weren't always displayed correctly when opening
|
||||||
a document. This is fixed.
|
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:
|
* Build/installation:
|
||||||
|
|
||||||
- Allow autoconf 2.60 and 2.61 for building.
|
- Allow autoconf 2.60 and 2.61 for building.
|
||||||
|
Loading…
Reference in New Issue
Block a user