From cb7334ceede9e1f098cc9d6bb03ea46cdde5e8f5 Mon Sep 17 00:00:00 2001 From: Alexandre Paillier Date: Tue, 4 Apr 2023 17:50:40 +0200 Subject: [PATCH] Fix settings word split --- src_nbgl/ui_settings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src_nbgl/ui_settings.c b/src_nbgl/ui_settings.c index 482d220..4ca3f3e 100644 --- a/src_nbgl/ui_settings.c +++ b/src_nbgl/ui_settings.c @@ -15,13 +15,13 @@ static bool navCallback(uint8_t page, nbgl_pageContent_t* content) { switches[0] = (nbgl_layoutSwitch_t){.initState = N_storage.dataAllowed ? ON_STATE : OFF_STATE, .text = "Blind signing", - .subText = "Enable transaction blind signing", + .subText = "Enable transaction blind\nsigning", .token = BLIND_SIGNING_TOKEN, .tuneId = TUNE_TAP_CASUAL}; switches[1] = (nbgl_layoutSwitch_t){.initState = N_storage.contractDetails ? ON_STATE : OFF_STATE, .text = "Debug", - .subText = "Display contract data details", + .subText = "Display contract data\ndetails", .token = DEBUG_TOKEN, .tuneId = TUNE_TAP_CASUAL}; switches[2] =