Skip to content

Commit

Permalink
wrap text in whatsnew/policy
Browse files Browse the repository at this point in the history
  • Loading branch information
jixxed committed Aug 7, 2024
1 parent 2febb18 commit fc46df3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/releasenotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ Removed HGE Tracker (no need for it, since it is now so easy to collect)
Shipbuilder module selection popup will now close when clicking the module again
Renamed Frame Shift Drive Booster to Guardian Frame Shift Drive Booster (to make it easier to find/search)
Added Godshard module
Updated translations ES/RU (Thanks to Cashiot/RetroPaladin)
Updated translations ES/RU (Thanks to Cashiot/RetroPaladin)
Removed listed power draw from Experimental Weapon Stabiliser
wrap text in what's new and privacy policy dialog
Refresh Odyssey totals after UI init
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public void initComponents() {
whatsnew = "";
}
final TextArea whatsNewContent = new TextArea(whatsnew);
whatsNewContent.setWrapText(true);
whatsNewContent.setEditable(false);
whatsNewContent.setFocusTraversable(false);
VBox.setVgrow(whatsNewContent, Priority.ALWAYS);
Expand All @@ -62,6 +63,7 @@ public void initComponents() {
policy = "";
}
final TextArea policyContent = new TextArea(policy);
policyContent.setWrapText(true);
policyContent.setEditable(false);
policyContent.setFocusTraversable(false);
VBox.setVgrow(policyContent, Priority.ALWAYS);
Expand Down
3 changes: 3 additions & 0 deletions application/src/main/resources/text/whatsnew.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Shipbuilder module selection popup will now close when clicking the module again
Renamed Frame Shift Drive Booster to Guardian Frame Shift Drive Booster (to make it easier to find/search)
Added Godshard module
Updated translations ES/RU (Thanks to Cashiot/RetroPaladin)
Removed listed power draw from Experimental Weapon Stabiliser
wrap text in what's new and privacy policy dialog
Refresh Odyssey totals after UI init

Version 2.87
-------------
Expand Down

0 comments on commit fc46df3

Please sign in to comment.