Skip to content

Commit 22f2744

Browse files
authored
Merge 38c5d54 into 21367c8
2 parents 21367c8 + 38c5d54 commit 22f2744

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

source/NVDAObjects/JAB/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import textUtils
1313
from controlTypes import TextPosition
1414
from ..window import Window
15-
from ..behaviors import EditableTextWithoutAutoSelectDetection, Dialog
15+
from ..behaviors import ProgressBar, EditableTextWithoutAutoSelectDetection, Dialog
1616
import textInfos.offsets
1717
from logHandler import log
1818
from .. import InvalidNVDAObject
@@ -210,6 +210,9 @@ def findOverlayClasses(self,clsList):
210210
clsList.append(Table)
211211
elif self.parent and isinstance(self.parent,Table) and self.parent._jabTableInfo:
212212
clsList.append(TableCell)
213+
elif role == "progress bar":
214+
clsList.append(ProgressBar)
215+
213216
clsList.append(JAB)
214217

215218
@classmethod

0 commit comments

Comments
 (0)