mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-14 00:37:21 +00:00
Realigned emulation scene and fixed replaced Mifare to MIFARE
This commit is contained in:
parent
74023e43ce
commit
eb4d0bb737
1 changed files with 4 additions and 3 deletions
|
@ -569,7 +569,7 @@ static void nfc_protocol_support_scene_emulate_on_enter(NfcApp* instance) {
|
|||
|
||||
if(nfc_protocol_support_has_feature(protocol, NfcProtocolFeatureEmulateUid)) {
|
||||
widget_add_string_element(
|
||||
widget, 90, 28, AlignCenter, AlignCenter, FontPrimary, "Emulating UID");
|
||||
widget, 90, 26, AlignCenter, AlignCenter, FontPrimary, "Emulating UID");
|
||||
|
||||
size_t uid_len;
|
||||
const uint8_t* uid = nfc_device_get_uid(instance->nfc_device, &uid_len);
|
||||
|
@ -582,7 +582,7 @@ static void nfc_protocol_support_scene_emulate_on_enter(NfcApp* instance) {
|
|||
|
||||
} else {
|
||||
widget_add_string_element(
|
||||
widget, 90, 28, AlignCenter, AlignCenter, FontPrimary, "Emulating");
|
||||
widget, 90, 26, AlignCenter, AlignCenter, FontPrimary, "Emulating");
|
||||
if(!furi_string_empty(instance->file_name)) {
|
||||
furi_string_set(temp_str, instance->file_name);
|
||||
} else {
|
||||
|
@ -590,11 +590,12 @@ static void nfc_protocol_support_scene_emulate_on_enter(NfcApp* instance) {
|
|||
temp_str,
|
||||
"Unsaved\n%s",
|
||||
nfc_device_get_name(instance->nfc_device, NfcDeviceNameTypeFull));
|
||||
furi_string_replace_str(temp_str, "Mifare", "MIFARE");
|
||||
}
|
||||
}
|
||||
|
||||
widget_add_text_box_element(
|
||||
widget, 56, 30, 71, 25, AlignCenter, AlignCenter, furi_string_get_cstr(temp_str), false);
|
||||
widget, 56, 33, 71, 25, AlignCenter, AlignTop, furi_string_get_cstr(temp_str), false);
|
||||
|
||||
furi_string_free(temp_str);
|
||||
|
||||
|
|
Loading…
Reference in a new issue