Skip to content

Commit a0364bd

Browse files
Fix camera
1 parent 1c294fb commit a0364bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

internal_filesystem/lib/mpos/ui/camera_activity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,11 +397,11 @@ def init_internal_cam(self, width, height):
397397
(720, 720): FrameSize.R720X720,
398398
(800, 600): FrameSize.SVGA,
399399
(800, 800): FrameSize.R800X800,
400-
(960, 960): FrameSize.R960X960,
401400
(1024, 768): FrameSize.XGA,
401+
(960, 960): FrameSize.R960X960,
402402
(1280, 720): FrameSize.HD,
403403
(1024, 1024): FrameSize.R1024X1024,
404-
# These are disabled in the settings because use a lot of RAM:
404+
# These are disabled in camera_settings.py because they 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ class CameraSettingsActivity(Activity):
9393
("720x720", "720x720"),
9494
("800x600", "800x600"),
9595
("800x800", "800x800"),
96+
("1024x768", "1024x768"),
9697
("960x960", "960x960"),
97-
("1024x768", "1024x768"),
98-
("1280x720", "1280x720"),
99-
("1024x1024","1024x1024"),
98+
("1280x720", "1280x720"),
99+
("1024x1024", "1024x1024"),
100100
# Disabled because they use a lot of RAM and are very slow:
101101
#("1280x1024", "1280x1024"),
102102
#("1280x1280", "1280x1280"),

0 commit comments

Comments
 (0)