forked from AuroraMiddleware/gtk
gtkentryaccessible: Fix text-changed::delete length
The second parameter of the text-changed::delete event is to be the length, not the end position. This fixes spurious text removals in brltty screen reading.
This commit is contained in:
parent
46dac1aba4
commit
209f908a03
@ -1433,7 +1433,7 @@ delete_text_cb (GtkEditable *editable,
|
||||
g_signal_emit_by_name (accessible,
|
||||
"text-changed::delete",
|
||||
start,
|
||||
end);
|
||||
end - start);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
Loading…
Reference in New Issue
Block a user