Skip to content

Commit

Permalink
[FL-2464, FL-2466] RFID, ibutton text fix #1413
Browse files Browse the repository at this point in the history
Co-authored-by: あく <[email protected]>
  • Loading branch information
nminaylov and skotopes authored Jul 25, 2022
1 parent ac60d18 commit 30820b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion applications/ibutton/scenes/ibutton_scene_retry_confirm.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void ibutton_scene_retry_confirm_on_enter(void* context) {
widget_add_string_element(
widget, 64, 19, AlignCenter, AlignBottom, FontPrimary, "Return to reading?");
widget_add_string_element(
widget, 64, 29, AlignCenter, AlignBottom, FontSecondary, "All unsaved data will be lost");
widget, 64, 29, AlignCenter, AlignBottom, FontSecondary, "All unsaved data will be lost.");

view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewWidget);
}
Expand Down
2 changes: 1 addition & 1 deletion applications/infrared/scenes/infrared_scene_ask_back.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void infrared_scene_ask_back_on_enter(void* context) {
}

dialog_ex_set_text(
dialog_ex, "All unsaved data\nwill be lost", 64, 31, AlignCenter, AlignCenter);
dialog_ex, "All unsaved data\nwill be lost.", 64, 31, AlignCenter, AlignCenter);
dialog_ex_set_icon(dialog_ex, 0, 0, NULL);
dialog_ex_set_left_button_text(dialog_ex, "Exit");
dialog_ex_set_center_button_text(dialog_ex, NULL);
Expand Down
2 changes: 1 addition & 1 deletion applications/infrared/scenes/infrared_scene_ask_retry.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void infrared_scene_ask_retry_on_enter(void* context) {

dialog_ex_set_header(dialog_ex, "Return to reading?", 64, 0, AlignCenter, AlignTop);
dialog_ex_set_text(
dialog_ex, "All unsaved data\nwill be lost", 64, 31, AlignCenter, AlignCenter);
dialog_ex, "All unsaved data\nwill be lost.", 64, 31, AlignCenter, AlignCenter);
dialog_ex_set_icon(dialog_ex, 0, 0, NULL);
dialog_ex_set_left_button_text(dialog_ex, "Exit");
dialog_ex_set_center_button_text(dialog_ex, NULL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void LfRfidAppSceneRetryConfirm::on_enter(LfRfidApp* app, bool /* need_restore *

line_1->set_text("Return to reading?", 64, 19, 128 - 2, AlignCenter, AlignBottom, FontPrimary);
line_2->set_text(
"All unsaved data will be lost", 64, 29, 0, AlignCenter, AlignBottom, FontSecondary);
"All unsaved data will be lost.", 64, 29, 0, AlignCenter, AlignBottom, FontSecondary);

app->view_controller.switch_to<ContainerVM>();
}
Expand Down

0 comments on commit 30820b8

Please sign in to comment.