1
0
Fork 0

Expand layer SpinCtrl a little

to compensate wxMac bug with GetSizeFromText
This commit is contained in:
wangqr 2020-03-10 01:15:58 -04:00 committed by arch1t3cht
parent d55922d3cf
commit 53cc316e6f
1 changed files with 1 additions and 1 deletions

View File

@ -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());