mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
small fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5270 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c25a3c200c
commit
b7c25c8a80
@ -1,3 +1,13 @@
|
|||||||
|
2002-09-11 John Levon <levon@movementarian.org>
|
||||||
|
|
||||||
|
* QCitationDialog.C: show right info when selecting a cite
|
||||||
|
|
||||||
|
* QParagraphDialog.C: don't validate lengths, to allow glue
|
||||||
|
|
||||||
|
2002-09-11 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
|
* QFloatDialog.C: Fix the setEnable() logic
|
||||||
|
|
||||||
2002-09-11 John Levon <levon@movementarian.org>
|
2002-09-11 John Levon <levon@movementarian.org>
|
||||||
|
|
||||||
* Alert_pimpl.C:
|
* Alert_pimpl.C:
|
||||||
|
@ -135,7 +135,7 @@ void QCitationDialog::slotCiteHighlighted(int sel)
|
|||||||
// Put into browser_info the additional info associated
|
// Put into browser_info the additional info associated
|
||||||
// with the selected browser_cite key
|
// with the selected browser_cite key
|
||||||
infoML->clear();
|
infoML->clear();
|
||||||
infoML->setText(biblio::getInfo(theMap, form_->bibkeys[sel]).c_str());
|
infoML->setText(biblio::getInfo(theMap, form_->citekeys[sel]).c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,22 +58,26 @@ void QFloatDialog::tbhpClicked()
|
|||||||
|
|
||||||
void QFloatDialog::heredefinitelyClicked()
|
void QFloatDialog::heredefinitelyClicked()
|
||||||
{
|
{
|
||||||
|
if (heredefinitelyCB->isChecked());
|
||||||
|
ignoreCB->setEnabled(false);
|
||||||
|
|
||||||
topCB->setChecked(false);
|
topCB->setChecked(false);
|
||||||
bottomCB->setChecked(false);
|
bottomCB->setChecked(false);
|
||||||
pageCB->setChecked(false);
|
pageCB->setChecked(false);
|
||||||
herepossiblyCB->setChecked(false);
|
herepossiblyCB->setChecked(false);
|
||||||
|
ignoreCB->setChecked(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void QFloatDialog::spanClicked()
|
void QFloatDialog::spanClicked()
|
||||||
{
|
{
|
||||||
bool const span(spanCB->isChecked());
|
bool const span(spanCB->isChecked());
|
||||||
|
|
||||||
if (!defaultsCB->isChecked()) {
|
if (!defaultsCB->isChecked()) {
|
||||||
herepossiblyCB->setEnabled(!span);
|
herepossiblyCB->setEnabled(!span);
|
||||||
heredefinitelyCB->setEnabled(!span);
|
heredefinitelyCB->setEnabled(!span);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!span)
|
if (!span)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -31,8 +31,9 @@ QParagraphDialog::QParagraphDialog(QParagraph * form)
|
|||||||
|
|
||||||
|
|
||||||
linespacingValue->setValidator(new QDoubleValidator(linespacingValue));
|
linespacingValue->setValidator(new QDoubleValidator(linespacingValue));
|
||||||
valueAbove->setValidator(new QDoubleValidator(valueAbove));
|
// disabled to allow glue spacing for latexperts
|
||||||
valueBelow->setValidator(new QDoubleValidator(valueBelow));
|
//valueAbove->setValidator(new QDoubleValidator(valueAbove));
|
||||||
|
//valueBelow->setValidator(new QDoubleValidator(valueBelow));
|
||||||
}
|
}
|
||||||
|
|
||||||
void QParagraphDialog::closeEvent(QCloseEvent * e)
|
void QParagraphDialog::closeEvent(QCloseEvent * e)
|
||||||
|
Loading…
Reference in New Issue
Block a user