summaryrefslogtreecommitdiff
path: root/libcaribou
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2011-09-22 15:52:02 -0400
committerDan Winship <danw@gnome.org>2011-09-23 07:52:52 -0400
commit16e69bf717f0f572f76bfa0ee03b62fac5b202fb (patch)
tree0d656675b2a174a8c7d6709a9af75fccff7e2936 /libcaribou
parent22a8b381dfe44f4c745d4a5ae71c9e85453996cd (diff)
downloadcaribou-16e69bf717f0f572f76bfa0ee03b62fac5b202fb.tar.gz
keyboard-service: don't try to replace an existing keyboard
In particular, antler should never try to replace the gnome-shell keyboard. https://bugzilla.gnome.org/show_bug.cgi?id=659867
Diffstat (limited to 'libcaribou')
-rw-r--r--libcaribou/keyboard-service.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaribou/keyboard-service.vala b/libcaribou/keyboard-service.vala
index 2e7351e..6eae5ca 100644
--- a/libcaribou/keyboard-service.vala
+++ b/libcaribou/keyboard-service.vala
@@ -31,7 +31,7 @@ namespace Caribou {
private void on_impl_name_acquired (DBusConnection conn, string name) {
Bus.own_name (
BusType.SESSION, "org.gnome.Caribou.Keyboard",
- BusNameOwnerFlags.ALLOW_REPLACEMENT | BusNameOwnerFlags.REPLACE,
+ BusNameOwnerFlags.ALLOW_REPLACEMENT,
on_bus_acquired, on_generic_name_acquired, on_name_lost);
}