* 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:
Jürgen Spitzmüller 2007-01-08 13:21:36 +00:00
parent b474cb3353
commit 8c143c72d6
3 changed files with 10 additions and 2 deletions

View File

@ -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).
* QGraphicsDialog.C: do not focus filename widget for
already existing insets (bug 1663).
2007-01-05 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* QCitationDialog.C: Disallow pressing the add button in the citation

View File

@ -22,6 +22,8 @@
#include "controllers/ControlGraphics.h"
#include "insets/insetgraphicsParams.h"
#include <qpushbutton.h>
#include <qlineedit.h>
#include <qvalidator.h>
@ -66,6 +68,7 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form)
void QGraphicsDialog::show()
{
QGraphicsDialogBase::show();
if (form_->controller().params().filename.empty())
filename->setFocus();
}

View File

@ -166,6 +166,8 @@ What's new
- Sanitize button enabling in the bibtex dialog [qt only] (bug 2895)
- fix focus problems in the graphics dialog [qt only] (bug 1663)
* Build/installation:
- Allow autoconf 2.60 and 2.61 for building.