diff options
| author | dam <dam@gudinoff> | 2022-04-04 10:02:13 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2022-04-04 10:02:13 +0000 |
| commit | f40df1987a35adbc234a1b04b018d92d420b1e92 (patch) | |
| tree | fbe2ef81b7aaf16a4a75259a9e09d2361de066ba /dialog | |
| parent | 2599637e95cf5702711ac60d74dd6259c549796f (diff) | |
| download | surgery-log-f40df1987a35adbc234a1b04b018d92d420b1e92.tar.zst surgery-log-f40df1987a35adbc234a1b04b018d92d420b1e92.zip | |
Replaced icons and simplified dialog button labels.
Diffstat (limited to 'dialog')
| -rw-r--r-- | dialog/dialog.gd | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dialog/dialog.gd b/dialog/dialog.gd index bfdbab5..1cf0e66 100644 --- a/dialog/dialog.gd +++ b/dialog/dialog.gd @@ -19,7 +19,6 @@ func _init(): self.connect("hide", self, "_clear_signals") reject = Button.new() - reject.text = "reject" reject.anchor_top = 1.0 reject.anchor_left = 0.0 reject.anchor_right = 0.5 @@ -29,7 +28,6 @@ func _init(): add_child(reject) accept = Button.new() - accept.text = "accept" accept.anchor_top = 1.0 accept.anchor_left = 0.5 accept.anchor_right = 1.0 |
