Skip to content

Commit cb987c1

Browse files
committed
made all_screens True by default
1 parent c52c964 commit cb987c1

File tree

3 files changed

+409
-326
lines changed

3 files changed

+409
-326
lines changed

interpreter/core/computer/display/display.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def center(self):
6161
"""
6262
return self.width // 2, self.height // 2
6363

64-
def view(self, show=True, quadrant=None, all_screens=False, combine_screens=True
64+
def view(self, show=True, quadrant=None, all_screens=True, combine_screens=True
6565
):
6666
"""
6767
Redirects to self.screenshot
@@ -72,7 +72,7 @@ def view(self, show=True, quadrant=None, all_screens=False, combine_screens=True
7272
# return get_active_window()
7373

7474
def screenshot(
75-
self, all_screens=False, show=True, quadrant=None, active_app_only=False, force_image=False,combine_screens=True
75+
self, all_screens=True, show=True, quadrant=None, active_app_only=False, force_image=False,combine_screens=True
7676
):
7777
"""
7878
Shows you what's on the screen by taking a screenshot of the entire screen or a specified quadrant. Returns a `pil_image` `in case you need it (rarely). **You almost always want to do this first!**

0 commit comments

Comments
 (0)