From 2d79cd4b24aa4d90aedb48f40dfeb3be19d9b8ba Mon Sep 17 00:00:00 2001 From: Kyle Reed Date: Wed, 24 May 2023 10:20:48 -0700 Subject: [PATCH] Fix button_exit width (#1064) I moved the exit button without making it narrower in the last change. This shrinks the width, so it fits on the screen. --- firmware/application/apps/ui_fileman.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/apps/ui_fileman.hpp b/firmware/application/apps/ui_fileman.hpp index 265c6044..2fc76209 100644 --- a/firmware/application/apps/ui_fileman.hpp +++ b/firmware/application/apps/ui_fileman.hpp @@ -121,7 +121,7 @@ class FileManBaseView : public View { ""}; Button button_exit{ - {22 * 8, 34 * 8, 9 * 8, 32}, + {22 * 8, 34 * 8, 8 * 8, 32}, "Exit"}; };