* GuiRef.cpp:

- use itemDoubleClicked() instead of itemActivated(). The latter is traditionally defined as single click
	  on UNIX, which is not desired here (bug 6204)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@31320 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-09-07 09:06:18 +00:00
parent 0113ce8310
commit 4f3f4eed15
2 changed files with 4 additions and 1 deletions

View File

@ -70,7 +70,7 @@ GuiRef::GuiRef(GuiView & lv)
this, SLOT(refHighlighted(QListWidgetItem *)));
connect(refsLW, SIGNAL(itemSelectionChanged()),
this, SLOT(selectionChanged()));
connect(refsLW, SIGNAL(itemActivated(QListWidgetItem *)),
connect(refsLW, SIGNAL(itemDoubleClicked(QListWidgetItem *)),
this, SLOT(refSelected(QListWidgetItem *)));
connect(sortCB, SIGNAL(clicked(bool)),
this, SLOT(sortToggled(bool)));

View File

@ -68,6 +68,9 @@ What's new
- Disable to insert floats into another float when this is not
allowed (bug 6045).
- Do not close the cross references dialog when selecting an item from the
list (UNIX only; bug 6204).
* DOCUMENTATION AND LOCALIZATION