[tracker] tracker-status-icon: Avoid hard-coded keybinding.
- From: Martyn James Russell <mr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] tracker-status-icon: Avoid hard-coded keybinding.
- Date: Mon, 6 Dec 2010 12:39:53 +0000 (UTC)
commit 8338b23d1c2617588ed9917f1ffa7d781d6c501d
Author: James Hunt <james hunt ubuntu com>
Date: Mon Dec 6 12:27:59 2010 +0000
tracker-status-icon: Avoid hard-coded keybinding.
Fixes GB#636383
This affect emacs since by default 'isearch-forward-regexp' is bound in
emacs to control+alt+S by default. However, tracker grabs the binding
before emacs meaning emacs users have to call this function using 'M-x'
or changing their bindings.
Change courtesy of Andrei Dziahel. See:
https://bugs.launchpad.net/ubuntu/+source/tracker/+bug/672614
src/tracker-status-icon/tracker-status-icon.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/tracker-status-icon/tracker-status-icon.c b/src/tracker-status-icon/tracker-status-icon.c
index 8feb202..cb88915 100644
--- a/src/tracker-status-icon/tracker-status-icon.c
+++ b/src/tracker-status-icon/tracker-status-icon.c
@@ -218,8 +218,12 @@ tracker_status_icon_init (TrackerStatusIcon *icon)
g_signal_connect (priv->config, "notify::visibility",
G_CALLBACK (status_icon_visibility_notify), icon);
- /* FIXME: Make this configurable */
+#if 0
+ /* FIXME: Make this configurable, this has been disabled due to bug:
+ * https://bugzilla.gnome.org/show_bug.cgi?id=636383
+ */
set_global_keybinding (icon, "<Ctrl><Alt>S");
+#endif
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]