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.
This commit is contained in:
Kyle Reed 2023-05-24 10:20:48 -07:00 committed by GitHub
parent 637bcfdbc7
commit 2d79cd4b24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"};
};