diff --git a/common/widgets/properties_panel.cpp b/common/widgets/properties_panel.cpp
index e20b5f9c5c..1774ff4e20 100644
--- a/common/widgets/properties_panel.cpp
+++ b/common/widgets/properties_panel.cpp
@@ -82,7 +82,7 @@ PROPERTIES_PANEL::PROPERTIES_PANEL( wxWindow* aParent, EDA_BASE_FRAME* aFrame )
m_grid->DedicateKey( WXK_NUMPAD_ENTER );
m_grid->DedicateKey( WXK_DOWN );
m_grid->DedicateKey( WXK_UP );
- mainSizer->Add( m_grid, 1, wxALL | wxEXPAND, 5 );
+ mainSizer->Add( m_grid, 1, wxEXPAND, 5 );
m_grid->SetCellDisabledTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) );
@@ -91,6 +91,8 @@ PROPERTIES_PANEL::PROPERTIES_PANEL( wxWindow* aParent, EDA_BASE_FRAME* aFrame )
m_grid->SetCaptionTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_CAPTIONTEXT ) );
#endif
+ SetFont( KIUI::GetDockedPaneFont( this ) );
+
SetSizer( mainSizer );
Layout();
diff --git a/common/widgets/search_pane_base.cpp b/common/widgets/search_pane_base.cpp
index 967a93426d..e4b592d32d 100644
--- a/common/widgets/search_pane_base.cpp
+++ b/common/widgets/search_pane_base.cpp
@@ -20,11 +20,11 @@ SEARCH_PANE_BASE::SEARCH_PANE_BASE( wxWindow* parent, wxWindowID id, const wxPoi
m_searchCtrl1->ShowSearchButton( true );
#endif
m_searchCtrl1->ShowCancelButton( false );
- m_sizerOuter->Add( m_searchCtrl1, 0, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 5 );
+ m_sizerOuter->Add( m_searchCtrl1, 0, wxEXPAND|wxTOP, 5 );
m_notebook = new wxNotebook( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
- m_sizerOuter->Add( m_notebook, 1, wxEXPAND, 5 );
+ m_sizerOuter->Add( m_notebook, 1, wxEXPAND|wxTOP, 5 );
this->SetSizer( m_sizerOuter );
diff --git a/common/widgets/search_pane_base.fbp b/common/widgets/search_pane_base.fbp
index 6215b800d5..7400e655b7 100644
--- a/common/widgets/search_pane_base.fbp
+++ b/common/widgets/search_pane_base.fbp
@@ -61,7 +61,7 @@
protected