ソースを参照

Formatting and account creation bug fixed

- Made the initial 0 in the balance display of empty accounts visible.
- Fixed a tiny bug in the account creation dialog.
Tankernn 8 年 前
コミット
63a807918d

+ 1 - 1
src/eu/tankernn/accounts/frame/AccountPanel.java

@@ -54,7 +54,7 @@ public class AccountPanel extends JPanel implements ActionListener {
 	public AccountPanel() {
 		this.setLayout(new BorderLayout());
 
-		format = new DecimalFormat("### ###.00");
+		format = new DecimalFormat("### ##0.00");
 		format.setGroupingUsed(true);
 		format.setGroupingSize(3);
 

+ 1 - 1
src/eu/tankernn/accounts/frame/NewAccountDialog.java

@@ -28,7 +28,7 @@ public class NewAccountDialog {
 	}
 
 	public String getLastName() {
-		return formatName(firstName.getText());
+		return formatName(lastName.getText());
 	}
 
 	public int getResult() {