Fix: RoundRectButtonSetting x, y

This commit is contained in:
2018-06-11 09:57:32 +09:00
parent 8a820ff07f
commit cbe59fa819
4 changed files with 5 additions and 8 deletions
+1 -2
View File
@@ -68,11 +68,10 @@ class Login {
}
makeStartButton(x, y) {
let setting = new RoundRectButtonSetting(200, 100);
let setting = new RoundRectButtonSetting(x, y, 200, 100);
setting.fontStyle.fontWeight = "bold";
let startButton = new RoundRectButton(setting, RoundRectButton.NONE_ICON, "시작", this.startMenu);
startButton.move(x, y);
}
makeInfoText(x, y) {