Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
ccavanaugh committed Mar 31, 2019
1 parent d62a5d0 commit 1a54c33
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
== Release 3.0.2
* 03/30/2019 Automatic column widths will now update correctly if numeric or date formats change.
* 03/30/2019 Use a full commodity format for the Total column in the investment register.
* 03/30/2019 Changes to preferred date and numeric formats will now trigger an immediate update of the registers.
* 03/30/2019 Changes to preferred date and numeric formats will now trigger an immediate update of the active register.
* 03/29/2019 Improved detection and handling of invalid decimal input.
* 03/29/2019 Removed direct print support from the report dialog. The user can use save the PDF and print it.
* 03/28/2019 Reimplemented the page format dialog for reports to address OSX issues and to allow custom paper sizes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* Enumeration of standard page sizes.
* <p>
* Page sizes are in Points
*
* @author Craig Cavanaugh
*/
public enum PageSize {

Expand All @@ -34,8 +36,8 @@ public enum PageSize {
LEGAL("US Legal", 8.5f * POINTS_PER_INCH, 14f * POINTS_PER_INCH),
TABLOID("US Tabloid", 11f * POINTS_PER_INCH, 17f * POINTS_PER_INCH);

public transient float width;
public transient float height;
public final transient float width;
public final transient float height;

private final transient String description;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,7 @@ Title.Reminder = \u041D\u0430\u0433\u0430\u0434\u0443\u0432\u0
Title.Reminders = \u041D\u0430\u0433\u0430\u0434\u0443\u0432\u0430\u043D\u043D\u044F
Title.RenameBudget = Rename Budget
Title.ReportOptions = Report Options
Title.ReportSize = Report Size
Title.RetainedEarnings = Retained Earnings
Title.ReverseAccountBalances = Reverse Displayed Account Balances
Title.SaveAs = \u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u044F\u043A
Expand Down

0 comments on commit 1a54c33

Please sign in to comment.