commit f973855bdea94f0c6edf8eace7548a440f005902
Author: Juergen Spitzmueller <[email protected]>
Date: Sat Sep 29 10:27:20 2018 +0200
Amend cab46ff9d1ea3
---
src/frontends/qt4/GuiCitation.cpp | 8 ++++++++
src/frontends/qt4/ui/CitationUi.ui | 7 ++-----
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/frontends/qt4/GuiCitation.cpp
b/src/frontends/qt4/GuiCitation.cpp
index ccd7425..5e35afc 100644
--- a/src/frontends/qt4/GuiCitation.cpp
+++ b/src/frontends/qt4/GuiCitation.cpp
@@ -175,6 +175,8 @@ GuiCitation::GuiCitation(GuiView & lv)
selectedLV->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
#endif
+ selectedLV->setToolTip(qt_("Ordered list of all cited references.\n"
+ "You can reorder, add and remove references
with the buttons on the left."));
setFocusProxy(filter_);
}
@@ -357,6 +359,12 @@ void GuiCitation::updateFormatting(CitationStyle const &
currentStyle)
starredCB->setToolTip(qt_("Always list all authors
(rather than using \"et al.\"), "
"if the current citation
style supports this."));
}
+ if (availableLV->selectionModel()->selectedIndexes().isEmpty())
+ availableLV->setToolTip(qt_("All references available for
citing."));
+ else
+ availableLV->setToolTip(qt_("All references available for
citing.\n"
+ "To add the selected one, hit Add,
press Enter or double-click.\n"
+ "Hit Ctrl-Enter to add and close
the dialog."));
}
diff --git a/src/frontends/qt4/ui/CitationUi.ui
b/src/frontends/qt4/ui/CitationUi.ui
index a329341..54628d6 100644
--- a/src/frontends/qt4/ui/CitationUi.ui
+++ b/src/frontends/qt4/ui/CitationUi.ui
@@ -123,9 +123,7 @@
<item>
<widget class="QListView" name="availableLV">
<property name="toolTip">
- <string>All references available for citing.
-To select one, hit Add, press Enter or double-click.
-Hit Ctrl-Enter to select and close the dialog.</string>
+ <string/>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
@@ -241,8 +239,7 @@ Hit Ctrl-Enter to select and close the dialog.</string>
<item>
<widget class="QTableView" name="selectedLV">
<property name="toolTip">
- <string>Ordered list of all cited references.
-You can reorder, add and remove references with the buttons on the
left.</string>
+ <string/>
</property>
</widget>
</item>