Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorits your bedtime <23366927+itsyourbedtime@users.noreply.github.com>2021-09-02 12:02:34 +0300
committerGitHub <noreply@github.com>2021-09-02 12:02:34 +0300
commitae08c88bd6642bba88385c0396b58c977fdbb46a (patch)
tree9ab5c01208aa2dfb988f97cfa8781fd8c064a190 /applications/irda
parent420c03bb58aae0fa526e555d7a92e14f43b7fa6e (diff)
[FL-1472] Infrared: long names fix (#679)
* Infrared app: fix long button names * Ble: fix missing icon on start without config. * Gui: slow but nice string fitting. * Gui: fit header string in button menu Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/irda')
-rw-r--r--applications/irda/irda-app-remote-manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/irda/irda-app-remote-manager.h b/applications/irda/irda-app-remote-manager.h
index b2a0197f..2b157329 100644
--- a/applications/irda/irda-app-remote-manager.h
+++ b/applications/irda/irda-app-remote-manager.h
@@ -47,8 +47,8 @@ class IrdaAppRemoteManager {
std::string make_remote_name(const std::string& full_name) const;
public:
- static inline const uint32_t max_button_name_length = 31;
- static inline const uint32_t max_remote_name_length = 31;
+ static inline const uint32_t max_button_name_length = 22;
+ static inline const uint32_t max_remote_name_length = 22;
bool add_remote_with_button(const char* button_name, const IrdaAppSignal& signal);
bool add_button(const char* button_name, const IrdaAppSignal& signal);