summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/contacts-editor-property.vala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/contacts-editor-property.vala b/src/contacts-editor-property.vala
index 6f38590..4687fbd 100644
--- a/src/contacts-editor-property.vala
+++ b/src/contacts-editor-property.vala
@@ -556,16 +556,18 @@ public class Contacts.EditorProperty : Gee.ArrayList<EditorPropertyRow> {
private EditorPropertyRow create_for_birthday (BirthdayDetails? details) {
DateTime date;
+ Gtk.Button button;
if (details.birthday == null) {
date = new DateTime.now ();
+ button = new Gtk.Button.with_label (_("Set Birthday"));
} else {
date = details.birthday;
+ button = new Gtk.Button.with_label (details.birthday.to_local ().format ("%x"));
}
var box = new EditorPropertyRow ("birthday");
box.add_base_label (_("Birthday"));
- var button = new Gtk.Button.with_label (_("Set Birthday"));
box.container.pack_start (button);
button.clicked.connect (() => {