summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2012-01-20 16:12:03 +0100
committerAlexander Larsson <alexl@redhat.com>2012-01-20 16:12:03 +0100
commitfd5a1f19da29543522a8c188575a1a3ce9465be3 (patch)
treeeb43f8d3c03c39180133c6a8188546943d4d2343
parentbb3119c53f7ec37177b679f75aa3873878de8824 (diff)
downloadgnome-contacts-fd5a1f19da29543522a8c188575a1a3ce9465be3.tar.gz
Make nonworking buttons insensitive for now
-rw-r--r--src/contacts-app.vala2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/contacts-app.vala b/src/contacts-app.vala
index cb69585..96c1cc4 100644
--- a/src/contacts-app.vala
+++ b/src/contacts-app.vala
@@ -276,6 +276,7 @@ public class Contacts.App : Gtk.Application {
});
var select_button = new ToolButton (null, null);
+ select_button.set_sensitive (false);
select_button.set_icon_name ("object-select-symbolic");
select_button.is_important = false;
select_button.set_halign (Align.END);
@@ -292,6 +293,7 @@ public class Contacts.App : Gtk.Application {
grid.attach (toolbar, 1, 0, 1, 1);
var share_button = new ToolButton (null, null);
+ share_button.set_sensitive (false);
share_button.margin_right = 4;
share_button.set_icon_name ("send-to-symbolic");
share_button.is_important = false;