We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bce504 commit b840eefCopy full SHA for b840eef
internal_filesystem/apps/com.micropythonos.camera/assets/camera_app.py
@@ -162,7 +162,6 @@ def qrdecode_one(self):
162
if not result:
163
self.status_label.set_text(self.status_label_text_searching)
164
else:
165
- self.stop_qr_decoding()
166
result = remove_bom(result)
167
result = print_qr_buffer(result)
168
print(f"QR decoding found: {result}")
@@ -171,6 +170,7 @@ def qrdecode_one(self):
171
170
self.finish()
172
173
self.status_label.set_text(result) # in the future, the status_label text should be copy-paste-able
+ self.stop_qr_decoding()
174
except ValueError as e:
175
print("QR ValueError: ", e)
176
0 commit comments