mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-11-27 13:58:47 +03:00
Small UI fixes
This commit is contained in:
parent
67e7325f43
commit
559b0e9b40
@ -6,6 +6,8 @@
|
||||
* SubGHz: Fix issues when external module is not found but plugins tries to use it, now they will fallback to internal in that case
|
||||
* SubGHz: Fixed external CC1101 module power issues, added more checks, fixed issues when launching subghz favourites
|
||||
* SubGHz: Removed 330MHz from default freq hopper to make it faster, to change freq hopper settings and remove/add your freqs see -> [Instruction](https://github.com/DarkFlippers/unleashed-firmware/blob/dev/documentation/SubGHzSettings.md)
|
||||
* SubGHz: Small UI text fixes
|
||||
* GUI: Fix submenu elements text size, now we can fit more symbols
|
||||
* Plugins: Added delay and retries to avoid power issues in plugins -> WiFi Scanner, ESP8266 Deauther
|
||||
* Plugins: Update for WiFi Marauder companion -> `sniff` saves pcaps in `YourFlippersMicroSD/apps_data/marauder/` -> Only with custom marauder build (It is necessary to uncomment "#define WRITE_PACKETS_SERIAL" in configs.h (in marauder fw) and compile the firmware for the wifi board.) Or download precompiled build -> [Download esp32_marauder_ver_flipper_sd_serial.bin](https://github.com/justcallmekoko/ESP32Marauder/releases/latest) - [(by tcpassos)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion/pull/7)
|
||||
* Plugins: Removed `cdefines` from external plugins as it was not used in any way
|
||||
|
@ -220,7 +220,7 @@ void subghz_scene_set_type_on_enter(void* context) {
|
||||
subghz);
|
||||
submenu_add_item(
|
||||
subghz->submenu,
|
||||
"CAME Space 433MHz",
|
||||
"KL: CAME Space 433MHz",
|
||||
SubmenuIndexCAMESpace,
|
||||
subghz_scene_set_type_submenu_callback,
|
||||
subghz);
|
||||
|
@ -98,7 +98,7 @@ static void submenu_view_draw_callback(Canvas* canvas, void* _model) {
|
||||
|
||||
FuriString* disp_str;
|
||||
disp_str = furi_string_alloc_set(SubmenuItemArray_cref(it)->label);
|
||||
elements_string_fit_width(canvas, disp_str, item_width - 20);
|
||||
elements_string_fit_width(canvas, disp_str, item_width - 11);
|
||||
|
||||
canvas_draw_str(
|
||||
canvas,
|
||||
|
Loading…
Reference in New Issue
Block a user