We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ScrollView
IsOnTabBar
1 parent a93759a commit 3ff763eCopy full SHA for 3ff763e
1 file changed
src/uia.cc
@@ -633,10 +633,9 @@ bool IsOnTabBar(POINT pt) {
633
}
634
635
// Fast path to avoid `GetParentElement` calls for common tab bar elements.
636
- if (IsAnyClassName(
637
- pointed,
638
- {L"HorizontalTabStripRegionView", L"TabStrip::TabDragContextImpl",
639
- L"TabStripControlButton", L"FrameGrabHandle", L"ScrollView"})) {
+ if (IsAnyClassName(pointed, {L"HorizontalTabStripRegionView",
+ L"TabStrip::TabDragContextImpl",
+ L"TabStripControlButton", L"FrameGrabHandle"})) {
640
return true;
641
642
return FindParentByClass(automation, pointed,
0 commit comments