Skip to content

Commit

Permalink
Wrap group change details text to fit view
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-cremieux committed Jun 22, 2024
1 parent feab760 commit 729bc28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
- We slightly improved the duplicate check if ISBNs are present. [#8885](https://github.com/JabRef/jabref/issues/8885)
- JabRef no longer downloads HTML files of websites when a PDF was not found. [#10149](https://github.com/JabRef/jabref/issues/10149)
- We added the HTTP message (in addition to the response code) if an error is encountered. [#11341](https://github.com/JabRef/jabref/pull/11341)
- We made label wrap text to fit view size when reviewing external group changes. [#1120](https://github.com/JabRef/jabref/issues/11220)

### Fixed

Expand All @@ -50,7 +51,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
- We fixed an issue where the value of "Override default font settings" was not applied on startup [#11344](https://github.com/JabRef/jabref/issues/11344)
- We fixed an issue when "Library changed on disk" appeared after a save by JabRef. [#4877](https://github.com/JabRef/jabref/issues/4877)
- We fixe an issue where the value of "Override default font settings" was not applied on startup [#11344](https://github.com/JabRef/jabref/issues/11344)
- We fixed an issue where DatabaseChangeDetailsView was not scrollable when reviewing external metadata changes [#1120](https://github.com/JabRef/jabref/issues/11220)
- We fixed an issue where DatabaseChangeDetailsView was not scrollable when reviewing external metadata changes. [#1120](https://github.com/JabRef/jabref/issues/11220)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public GroupChangeDetailsView(GroupChange groupChange) {
labelValue = Localization.lang("%0. Accepting the change replaces the complete groups tree with the externally modified groups tree.", groupChange.getName());
}
Label label = new Label(labelValue);
label.setWrapText(true);

setLeftAnchor(label, 8d);
setTopAnchor(label, 8d);
setRightAnchor(label, 8d);
Expand Down

0 comments on commit 729bc28

Please sign in to comment.