mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 810372 - don't add app urls to utterances. r=davidb
This commit is contained in:
parent
9483d8e0fd
commit
795f8d8958
@ -247,6 +247,15 @@ this.UtteranceGenerator = {
|
||||
utterance.push(name);
|
||||
|
||||
return utterance;
|
||||
},
|
||||
|
||||
application: function application(aAccessible, aRoleStr, aStates, aFlags) {
|
||||
// Don't utter location of applications, it gets tiring.
|
||||
if (aAccessible.name != aAccessible.DOMNode.location)
|
||||
return this.objectUtteranceFunctions.defaultFunc(
|
||||
aAccessible, aRoleStr, aStates, aFlags);
|
||||
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user