mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-29 13:04:58 +00:00
parent
04ed229444
commit
068e3d4fe5
@ -175,6 +175,8 @@ GuiCitation::GuiCitation(GuiView & lv)
|
|||||||
selectedLV->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
|
selectedLV->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
|
||||||
#endif
|
#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_);
|
setFocusProxy(filter_);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -353,6 +355,12 @@ void GuiCitation::updateFormatting(CitationStyle const & currentStyle)
|
|||||||
starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\"), "
|
starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\"), "
|
||||||
"if the current citation style supports this."));
|
"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."));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -123,9 +123,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QListView" name="availableLV">
|
<widget class="QListView" name="availableLV">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>All references available for citing.
|
<string/>
|
||||||
To select one, hit Add, press Enter or double-click.
|
|
||||||
Hit Ctrl-Enter to select and close the dialog.</string>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="editTriggers">
|
<property name="editTriggers">
|
||||||
<set>QAbstractItemView::NoEditTriggers</set>
|
<set>QAbstractItemView::NoEditTriggers</set>
|
||||||
@ -241,8 +239,7 @@ Hit Ctrl-Enter to select and close the dialog.</string>
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTableView" name="selectedLV">
|
<widget class="QTableView" name="selectedLV">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Ordered list of all cited references.
|
<string/>
|
||||||
You can reorder, add and remove references with the buttons on the left.</string>
|
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -71,6 +71,8 @@ What's new
|
|||||||
- Update Simplified Chinese, German, Italian and Slovak user interface
|
- Update Simplified Chinese, German, Italian and Slovak user interface
|
||||||
localization.
|
localization.
|
||||||
|
|
||||||
|
- Add some tooltips in citation dialog in favor of keyboard users (bug 11317).
|
||||||
|
|
||||||
|
|
||||||
* BUILD/INSTALLATION
|
* BUILD/INSTALLATION
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user