diff --git a/dist/OutSystemsUI.js b/dist/OutSystemsUI.js index 718a9f3a2a..156d284639 100644 --- a/dist/OutSystemsUI.js +++ b/dist/OutSystemsUI.js @@ -11357,8 +11357,7 @@ var OSFramework; OSUI.Helper.A11Y.RoleButton(this._tooltipIconElem); OSUI.Helper.A11Y.RoleTooltip(this._tooltipBalloonWrapperElem); OSUI.Helper.A11Y.AriaDescribedBy(this._tooltipIconElem, this._tooltipBalloonContentElem.id); - OSUI.Helper.A11Y.AriaHiddenFalse(this._tooltipBalloonWrapperElem); - OSUI.Helper.A11Y.AriaHiddenFalse(this._tooltipBalloonWrapperElem); + OSUI.Helper.A11Y.AriaHiddenTrue(this._tooltipBalloonWrapperElem); OSUI.Helper.A11Y.TabIndexTrue(this._tooltipIconElem); } setCallbacks() { diff --git a/src/scripts/OSFramework/OSUI/Pattern/Tooltip/Tooltip.ts b/src/scripts/OSFramework/OSUI/Pattern/Tooltip/Tooltip.ts index 994001da08..656d0cd415 100644 --- a/src/scripts/OSFramework/OSUI/Pattern/Tooltip/Tooltip.ts +++ b/src/scripts/OSFramework/OSUI/Pattern/Tooltip/Tooltip.ts @@ -631,9 +631,7 @@ namespace OSFramework.OSUI.Patterns.Tooltip { // Set AriaDescribedBy to the TooltipBalloon Helper.A11Y.AriaDescribedBy(this._tooltipIconElem, this._tooltipBalloonContentElem.id); // Set the AriaHidden to the balloon! - Helper.A11Y.AriaHiddenFalse(this._tooltipBalloonWrapperElem); - // Set the AriaHidden to the balloon! - Helper.A11Y.AriaHiddenFalse(this._tooltipBalloonWrapperElem); + Helper.A11Y.AriaHiddenTrue(this._tooltipBalloonWrapperElem); // Set TabIndex to the TooltipTrigger Helper.A11Y.TabIndexTrue(this._tooltipIconElem); }