mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
* 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:
parent
0113ce8310
commit
4f3f4eed15
@ -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)));
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user