made filter dialog a little larger as ok/cancel wasbing cropped
authordrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Thu, 30 May 2013 02:11:07 +0000 (02:11 +0000)
committerdrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Thu, 30 May 2013 02:11:07 +0000 (02:11 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@1296 01035d8c-6547-0410-b346-abe4f91aad63

fdmdv2/src/dlg_filter.cpp
fdmdv2/src/dlg_filter.h

index e659c57b3103c06d31a13ef6a06f156f9414e41b..38913099ffcb74f0b54f5d008ae4902209e673c0 100644 (file)
@@ -73,11 +73,8 @@ FilterDlg::FilterDlg(wxWindow* parent, bool running, bool *newMicInFilter, bool
     left->Add(m_codec2LPCPostFilterBassBoost);
     lpcpfs->Add(left, 0, wxALL, 5);
 
-    wxBoxSizer* right = new wxBoxSizer(wxVERTICAL);
-
-    newLPCPFControl(&m_codec2LPCPostFilterBeta, &m_staticTextBeta, right, "Beta");
-    newLPCPFControl(&m_codec2LPCPostFilterGamma, &m_staticTextGamma, right, "Gamma");
-    lpcpfs->Add(right, 0, wxALL, 5);
+    newLPCPFControl(&m_codec2LPCPostFilterBeta, &m_staticTextBeta, lpcpfs, "Beta");
+    newLPCPFControl(&m_codec2LPCPostFilterGamma, &m_staticTextGamma, lpcpfs, "Gamma");
 
     m_LPCPostFilterDefault = new wxButton(this, wxID_ANY, wxT("Default"));
     lpcpfs->Add(m_LPCPostFilterDefault, 0, wxALL|wxALIGN_CENTRE_HORIZONTAL|wxALIGN_CENTRE_VERTICAL, 5);
index 679832e668d0f2eae431f34517e8bb7577302049..037ba24f08abeea6aeaf2cc2adc7695ccecdbc94 100644 (file)
@@ -53,7 +53,7 @@ class FilterDlg : public wxDialog
     public:
     FilterDlg( wxWindow* parent, bool running, bool *newMicInFilter, bool *newSpkOutFilter,
                wxWindowID id = wxID_ANY, const wxString& title = _("Filter"), 
-               const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 800, 550 ), 
+               const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 800, 600 ), 
                long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
         ~FilterDlg();