Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
derskythe committed Mar 31, 2023
1 parent 6b182f6 commit f5fe40e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions views/shapshup_main_view.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 :
Expand Down Expand Up @@ -590,4 +587,4 @@ void format_number(uint64_t n, char* out) {
c = (c + 1) % 3;
}
*--out = 0;
}
}

0 comments on commit f5fe40e

Please sign in to comment.