summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-10 00:19:15 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-10 16:10:25 +0100
commita8800e0ef5e9a519d2a35b8907e8fb5396c92b43 (patch)
tree877fa28d593d49ff9b7e57ac91a03c4475dcf963
parent47eb4bb86b59bd2e28dceac857397ae8df8ed1de (diff)
Allow a little more space in small_button_size for the ru_RU translation.v2.16.x-test-ru
-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;
}