Skip to content

Commit 42606fe

Browse files
committed
Merge remote-tracking branch 'upstream/master' into allowReordering
* upstream/master: Fixed an issue where entry preview tab has no name in drop down list. (#6591)
2 parents 7ddb6fa + 595f085 commit 42606fe

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
4646

4747
### Fixed
4848

49+
- We fixed an issue where entry preview tab has no name in drop down list. [#6591](https://github.com/JabRef/jabref/issues/6591)
4950
- We fixed to only search file links in the BIB file location directory when preferences has corresponding checkbox checked. [#5891](https://github.com/JabRef/jabref/issues/5891)
5051
- We fixed wrong button order (Apply and Cancel) in ManageProtectedTermsDialog.
5152
- We fixed an issue with incompatible characters at BibTeX key [#6257](https://github.com/JabRef/jabref/issues/6257)

Diff for: src/main/java/org/jabref/gui/entryeditor/PreviewTab.java

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import org.jabref.gui.externalfiletype.ExternalFileTypes;
55
import org.jabref.gui.icon.IconTheme;
66
import org.jabref.gui.preview.PreviewPanel;
7+
import org.jabref.logic.l10n.Localization;
78
import org.jabref.model.database.BibDatabaseContext;
89
import org.jabref.model.entry.BibEntry;
910
import org.jabref.preferences.JabRefPreferences;
@@ -22,6 +23,7 @@ public PreviewTab(BibDatabaseContext databaseContext, DialogService dialogServic
2223
this.externalFileTypes = externalFileTypes;
2324

2425
setGraphic(IconTheme.JabRefIcons.TOGGLE_ENTRY_PREVIEW.getGraphicNode());
26+
setText(Localization.lang("Preview"));
2527
}
2628

2729
@Override

0 commit comments

Comments
 (0)