Merge branch 'bugfix/DOPMO-182687' into 'develop'

Fix for DOPMO-182687, Retaining the voice over focus on the selected tab...

See merge request BPHV_MIPS/mvm_core_ui!889
This commit is contained in:
Hedden, Kyle Matthew 2022-08-03 18:03:37 +00:00
commit 064abf6c21

View File

@ -261,6 +261,9 @@ extension Tabs: UICollectionViewDelegateFlowLayout {
} else if let action = tabsModel.tabs[selectedIndex].action {
MVMCoreActionHandler.shared()?.asyncHandleAction(with: action, additionalData: [KeySourceModel: tabsModel], delegateObject:delegateObject)
}
if UIAccessibility.isVoiceOverRunning {
UIAccessibility.post(notification: .layoutChanged, argument: tabCell)
}
}
}