[FL-2886] SubGhz: fix text overlap in read (#1853)

This commit is contained in:
Skorpionm
2022-10-10 08:43:15 +04:00
committed by GitHub
parent 3fd30a9132
commit 906124b091

View File

@@ -60,7 +60,7 @@ void subghz_get_frequency_modulation(SubGhz* subghz, FuriString* frequency, Furi
subghz->txrx->preset->frequency / 10000 % 100);
}
if(modulation != NULL) {
furi_string_printf(modulation, "%2s", furi_string_get_cstr(subghz->txrx->preset->name));
furi_string_printf(modulation, "%.2s", furi_string_get_cstr(subghz->txrx->preset->name));
}
}