Skip to content

Commit 4969711

Browse files
Disable very high camera resolutions (again)
1 parent b94565a commit 4969711

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

internal_filesystem/lib/mpos/ui/camera_activity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,9 @@ def init_internal_cam(self, width, height):
399399
(800, 800): FrameSize.R800X800,
400400
(960, 960): FrameSize.R960X960,
401401
(1024, 768): FrameSize.XGA,
402-
(1024,1024): FrameSize.R1024X1024,
403-
# These are disabled in the settings because use a lot of RAM:
404402
(1280, 720): FrameSize.HD,
403+
(1024, 1024): FrameSize.R1024X1024,
404+
# These are disabled in the settings because use a lot of RAM:
405405
(1280, 1024): FrameSize.SXGA,
406406
(1280, 1280): FrameSize.R1280X1280,
407407
(1600, 1200): FrameSize.UXGA,

internal_filesystem/lib/mpos/ui/camera_settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ class CameraSettingsActivity(Activity):
9797
("1024x768", "1024x768"),
9898
("1280x720", "1280x720"),
9999
("1024x1024","1024x1024"),
100+
# Disabled because they use a lot of RAM and are very slow:
100101
#("1280x1024", "1280x1024"),
101102
#("1280x1280", "1280x1280"),
102103
#("1600x1200", "1600x1200"),

0 commit comments

Comments
 (0)