Skip to content

Commit

Permalink
Fix iOS and android AttributeError
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw committed Jan 23, 2025
1 parent de8d716 commit 958feb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions android/tests_backend/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
class WindowProbe(BaseProbe, DialogsMixin):
supports_fullscreen = True
supports_presentation = True
supports_as_image = True

def __init__(self, app, window):
super().__init__(app)
Expand Down
1 change: 1 addition & 0 deletions iOS/tests_backend/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
class WindowProbe(BaseProbe, DialogsMixin):
supports_fullscreen = False
supports_presentation = False
supports_as_image = True

def __init__(self, app, window):
super().__init__()
Expand Down

0 comments on commit 958feb9

Please sign in to comment.