diff --git a/views/shapshup_main_view.c b/views/shapshup_main_view.c index a12c38741db..9fb2e528b89 100644 --- a/views/shapshup_main_view.c +++ b/views/shapshup_main_view.c @@ -94,9 +94,6 @@ bool shapshup_main_view_input(InputEvent* event, void* context) { instance->raw_file->total_len, instance->raw_file->min_len, instance->scale) : 0; if(event->key == InputKeyOk) { -#ifdef FURI_DEBUG - FURI_LOG_D(TAG, "InputKeyOk"); -#endif instance->callback(ShapShupCustomEventTypeLoadFile, instance->context); } else if(event->key == InputKeyLeft && instance->offset > 0) { instance->offset = instance->offset < offset_per_page ? 0 : @@ -590,4 +587,4 @@ void format_number(uint64_t n, char* out) { c = (c + 1) % 3; } *--out = 0; -} \ No newline at end of file +}