mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 01:08:45 +00:00
* src/frontends/qt2/QGraphicsDialog.C:
- do not focus filename widget for already existing insets (bug 1663). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16603 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b474cb3353
commit
8c143c72d6
@ -1,7 +1,10 @@
|
|||||||
2007-01-05 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).
|
||||||
|
|
||||||
|
* QGraphicsDialog.C: do not focus filename widget for
|
||||||
|
already existing insets (bug 1663).
|
||||||
|
|
||||||
2007-01-05 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
2007-01-05 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
* QCitationDialog.C: Disallow pressing the add button in the citation
|
* QCitationDialog.C: Disallow pressing the add button in the citation
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
|
|
||||||
#include "controllers/ControlGraphics.h"
|
#include "controllers/ControlGraphics.h"
|
||||||
|
|
||||||
|
#include "insets/insetgraphicsParams.h"
|
||||||
|
|
||||||
#include <qpushbutton.h>
|
#include <qpushbutton.h>
|
||||||
#include <qlineedit.h>
|
#include <qlineedit.h>
|
||||||
#include <qvalidator.h>
|
#include <qvalidator.h>
|
||||||
@ -66,7 +68,8 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form)
|
|||||||
void QGraphicsDialog::show()
|
void QGraphicsDialog::show()
|
||||||
{
|
{
|
||||||
QGraphicsDialogBase::show();
|
QGraphicsDialogBase::show();
|
||||||
filename->setFocus();
|
if (form_->controller().params().filename.empty())
|
||||||
|
filename->setFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -166,6 +166,8 @@ What's new
|
|||||||
|
|
||||||
- Sanitize button enabling in the bibtex dialog [qt only] (bug 2895)
|
- Sanitize button enabling in the bibtex dialog [qt only] (bug 2895)
|
||||||
|
|
||||||
|
- fix focus problems in the graphics dialog [qt only] (bug 1663)
|
||||||
|
|
||||||
* 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