mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* src/frontends/qt4/QGraphicsDialog.C:
- allow double values in the bounding box widgets (bug 3055, 3056). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16664 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d0515ddc43
commit
f9bb0933fe
@ -110,10 +110,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));
|
||||
|
Loading…
Reference in New Issue
Block a user