X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c757b5fee093bbc3686f1e474316396b742fb888..e3e89a9370cf895877feb84820c26bdc2e6ed588:/src/common/fontpickercmn.cpp?ds=sidebyside diff --git a/src/common/fontpickercmn.cpp b/src/common/fontpickercmn.cpp index 35bb1653f6..92cf9898b6 100644 --- a/src/common/fontpickercmn.cpp +++ b/src/common/fontpickercmn.cpp @@ -28,7 +28,10 @@ #include "wx/fontpicker.h" -#include "wx/textctrl.h" +#ifndef WX_PRECOMP + #include "wx/textctrl.h" +#endif + #include "wx/fontenum.h" #include "wx/tokenzr.h" @@ -52,9 +55,6 @@ bool wxFontPickerCtrl::Create( wxWindow *parent, wxWindowID id, long style, const wxValidator& validator, const wxString &name ) { - // by default, the textctrl is, if present, as big as the picker, for wxFontPickerCtrl - SetTextCtrlProportion(1); - if (!wxPickerBase::CreateBase(parent, id, Font2String(initial), pos, size, style, validator, name)) return false; @@ -63,6 +63,9 @@ bool wxFontPickerCtrl::Create( wxWindow *parent, wxWindowID id, m_picker = new wxFontPickerWidget(this, wxID_ANY, initial, wxDefaultPosition, wxDefaultSize, GetPickerStyle(style)); + // complete sizer creation + wxPickerBase::PostCreation(); + m_picker->Connect(wxEVT_COMMAND_FONTPICKER_CHANGED, wxFontPickerEventHandler(wxFontPickerCtrl::OnFontChange), NULL, this);