commit clutter for openSUSE:Factory
Hello community, here is the log from the commit of package clutter for openSUSE:Factory checked in at 2016-07-01 09:53:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/clutter (Old) and /work/SRC/openSUSE:Factory/.clutter.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "clutter" Changes: -------- --- /work/SRC/openSUSE:Factory/clutter/clutter.changes 2016-04-12 18:57:08.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.clutter.new/clutter.changes 2016-07-01 09:53:07.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Jun 20 22:37:24 UTC 2016 - zaitor@opensuse.org + +- Add clutter-text-bind-ctrl-A.patch: text: Bind <ctrl>A in + addition to <ctrl>a (bgo#766326). + +------------------------------------------------------------------- New: ---- clutter-text-bind-ctrl-A.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ clutter.spec ++++++ --- /var/tmp/diff_new_pack.e3sIxJ/_old 2016-07-01 09:53:08.000000000 +0200 +++ /var/tmp/diff_new_pack.e3sIxJ/_new 2016-07-01 09:53:08.000000000 +0200 @@ -33,6 +33,8 @@ Source99: baselibs.conf # PATCH-FIX-UPSTREAM clutter-Warn-on-adding-removing.patch zaitor@opensuse.org -- ClutterActor should warn if a user tries to add or remove an actor to, and from, itself on the scene graph. Patch0: clutter-Warn-on-adding-removing.patch +# PATCH-FIX-UPSTREAM clutter-text-bind-ctrl-A.patch bgo#766326 zaitor@opensuse.org -- text: Bind <ctrl>A in addition to <ctrl>a +Patch1: clutter-text-bind-ctrl-A.patch BuildRequires: fdupes BuildRequires: xmlto BuildRequires: pkgconfig(atk) >= 2.5.3 @@ -111,6 +113,7 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure \ ++++++ clutter-text-bind-ctrl-A.patch ++++++
From f12969fd5276cdcfeeb0a78b827405c975a11bc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org> Date: Thu, 12 May 2016 15:25:43 +0200 Subject: text: Bind <ctrl>A in addition to <ctrl>a
The 'select-all' action is currently only bound to <ctrl>a, which makes it awkward to use when caps-lock is active, and is inconsistent with GTK+. Just accept both upper- and lower-case variants. https://bugzilla.gnome.org/show_bug.cgi?id=766326 --- clutter/clutter-text.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clutter/clutter-text.c b/clutter/clutter-text.c index 164cb03..54dfae9 100644 --- a/clutter/clutter-text.c +++ b/clutter/clutter-text.c @@ -4044,6 +4044,10 @@ clutter_text_class_init (ClutterTextClass *klass) CLUTTER_KEY_a, CLUTTER_CONTROL_MASK, G_CALLBACK (clutter_text_real_select_all), NULL, NULL); + clutter_binding_pool_install_action (binding_pool, "select-all", + CLUTTER_KEY_A, CLUTTER_CONTROL_MASK, + G_CALLBACK (clutter_text_real_select_all), + NULL, NULL); clutter_binding_pool_install_action (binding_pool, "delete-next", CLUTTER_KEY_Delete, 0, -- cgit v0.12
participants (1)
-
root@hilbert.suse.de