[gjs/ewlsh/gtk4-a11y: 3/3] overrides: Override Gtk.Accessible update_relation
- From: Evan Welsh <ewlsh src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs/ewlsh/gtk4-a11y: 3/3] overrides: Override Gtk.Accessible update_relation
- Date: Fri, 27 Aug 2021 05:11:34 +0000 (UTC)
commit 54a8e3a9f069b2e1d0f35278900aab7027280e75
Author: Evan Welsh <contact evanwelsh com>
Date: Thu Aug 26 21:36:05 2021 -0700
overrides: Override Gtk.Accessible update_relation
Fixes #392
modules/core/overrides/Gtk.js | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
---
diff --git a/modules/core/overrides/Gtk.js b/modules/core/overrides/Gtk.js
index 3dd2904c..6512b957 100644
--- a/modules/core/overrides/Gtk.js
+++ b/modules/core/overrides/Gtk.js
@@ -137,6 +137,26 @@ function _init() {
}
return Gi.build_object_list(values);
};
+
+ const _update_relation = Gtk.Accessible.prototype.update_relation;
+
+ Gtk.Accessible.prototype.update_relation = function update_relation(relations, values) {
+ const mappedValues = values.map((value, i) => {
+ const relation = relations[i];
+ if (relation === Gtk.AccessibleRelation.LABELLED_BY) {
+ if (value instanceof GObject.Value)
+ return value;
+
+
+ const list = Gtk.AccessibleRelationList(value);
+ return list;
+ }
+
+ return value;
+ });
+
+ _update_relation.call(this, relations, mappedValues);
+ };
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]