summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-10 00:19:15 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-11 19:30:07 +0100
commit94e5ee4943069d839f6b0b8081704d130cd9ec5c (patch)
treeda93c9e8d7b998f484394253935d4fc0e2a63168 /src
parentc9c4a685ab2e808991d91b7fea5a44a4653b44cd (diff)
Allow a little more space in small_button_size for the ru_RU translation.
Diffstat (limited to 'src')
-rw-r--r--src/wx/wx_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc
index 47a6bd5b0..62f00b6b2 100644
--- a/src/wx/wx_util.cc
+++ b/src/wx/wx_util.cc
@@ -657,7 +657,7 @@ small_button_size (wxWindow* parent, wxString text)
wxClientDC dc (parent);
auto size = dc.GetTextExtent (text);
size.SetHeight (-1);
- size.IncBy (24, 0);
+ size.IncBy (32, 0);
return size;
}