From cd96edba8b8b1b4d28a379c91a530aa5cbc8c63d Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Wed, 26 Oct 2022 22:15:47 +0300 Subject: [PATCH] slightly reduce button padding --- src/Button.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Button.hpp b/src/Button.hpp index 7e7e3ae..b765d5c 100644 --- a/src/Button.hpp +++ b/src/Button.hpp @@ -32,7 +32,7 @@ protected: private: std::string m_text; ButtonType m_button_type; - double m_padding { 10 }; + double m_padding { 8 }; }; }