From a8800e0ef5e9a519d2a35b8907e8fb5396c92b43 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 10 Feb 2022 00:19:15 +0100 Subject: Allow a little more space in small_button_size for the ru_RU translation. --- src/wx/wx_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3