From 53cc316e6f740a7d810f3b2b47990b5ff90f5aa0 Mon Sep 17 00:00:00 2001 From: wangqr Date: Tue, 10 Mar 2020 01:15:58 -0400 Subject: [PATCH] Expand layer SpinCtrl a little to compensate wxMac bug with GetSizeFromText --- src/subs_edit_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subs_edit_box.cpp b/src/subs_edit_box.cpp index 20606230e..0f171cdfd 100644 --- a/src/subs_edit_box.cpp +++ b/src/subs_edit_box.cpp @@ -157,7 +157,7 @@ SubsEditBox::SubsEditBox(wxWindow *parent, agi::Context *context) // GTK3 has a bug that we cannot shrink the size of a widget, so do nothing there. See: // http://gtk.10911.n7.nabble.com/gtk-widget-set-size-request-stopped-working-with-GTK3-td26274.html // https://trac.wxwidgets.org/ticket/18568 - layer->SetInitialSize(layer->GetSizeFromTextSize(GetTextExtent(wxS("0")))); + layer->SetInitialSize(layer->GetSizeFromTextSize(GetTextExtent(wxS("00")))); #endif layer->SetToolTip(_("Layer number")); middle_left_sizer->Add(layer, wxSizerFlags().Center());