In new UX reading of current value is part of state phrase 18/282418/1 accepted/tizen/6.5/unified/20221020.114745 submit/tizen_6.5/20221019.081319
authorLukasz Oleksak <l.oleksak@samsung.com>
Wed, 14 Sep 2022 12:14:54 +0000 (14:14 +0200)
committerArtur Świgoń <a.swigon@samsung.com>
Mon, 3 Oct 2022 09:22:45 +0000 (11:22 +0200)
Change-Id: I3850bf57b6659a8886f43f6fc71cac52331aa37d

src/app_tracker.c

index 52972548e768d4b49e03552f416d24eb2f02acf7..8f299e90444cb1924fa14dd32143ac1391d5a1ad 100644 (file)
@@ -413,7 +413,7 @@ static void _on_atspi_event_cb(AtspiEvent *event, void *user_data)
                g_free(name);
                goto end;
        } else if (!g_strcmp0(event->type, "object:property-change:accessible-value")) { // for reading slider and spinner value changes
-               if (role == ATSPI_ROLE_SLIDER && (get_objects_attributes(event->source) & ACCESSIBLE_READING_INFO_TYPE_DESCRIPTION)) {
+               if (role == ATSPI_ROLE_SLIDER && (get_objects_attributes(event->source) & ACCESSIBLE_READING_INFO_TYPE_STATE)) {
                        _read_value(event->source);
                } else if (role == ATSPI_ROLE_FILLER) {
                        gchar *name = atspi_accessible_get_name(event->source, NULL);