attempt DBUS_GLIB fix
[moonshot-ui.git] / src / moonshot-idcard-widget.vala
index fcfd45b..c6758af 100644 (file)
@@ -77,7 +77,8 @@ class IdCardWidget : Box
     update_id_card_label ()
     {
         string services_text = "";
-        var display_name = Markup.printf_escaped ("<b>%s</b>", this.id_card.display_name);
+
+        var display_name = Markup.printf_escaped ("<big>%s</big>", this.id_card.display_name);
         for (int i=0; i<id_card.services.length; i++)
         {
             var service = id_card.services[i];
@@ -94,7 +95,7 @@ class IdCardWidget : Box
     {
         this.id_card = id_card;
 
-        var image = new Image.from_pixbuf (id_card.pixbuf);
+        var image = new Image.from_pixbuf (id_card.get_data ("pixbuf"));
 
         label = new Label (null);
         label.set_alignment ((float) 0, (float) 0.5);
@@ -115,6 +116,7 @@ class IdCardWidget : Box
         hbutton_box.pack_end (delete_button);
         hbutton_box.pack_end (details_button);
         hbutton_box.pack_end (send_button);
+        send_button.set_sensitive (false);
 
         delete_button.clicked.connect (delete_button_cb);
         details_button.clicked.connect (details_button_cb);