Revert DPI-change fix.

(Jon has a better one coming.)
This commit is contained in:
Jeff Young 2024-05-31 15:46:01 +01:00
parent f907b58d17
commit 3cc653b6ff
1 changed files with 0 additions and 14 deletions

View File

@ -135,20 +135,6 @@ DIALOG_FOOTPRINT_CHOOSER::DIALOG_FOOTPRINT_CHOOSER( PCB_BASE_FRAME* aParent,
wxCommandEventHandler( DIALOG_FOOTPRINT_CHOOSER::onFpViewReq ),
nullptr, this );
Bind( wxEVT_MOVE,
[this]( wxMoveEvent& aEvent )
{
COMMON_SETTINGS* settings = Pgm().GetCommonSettings();
const DPI_SCALING_COMMON dpi( settings, this );
if( m_preview3DCanvas->GetScaleFactor() != dpi.GetScaleFactor() )
{
m_preview3DCanvas->SetScaleFactor( dpi.GetScaleFactor() );
m_preview3DCanvas->ReloadRequest();
m_preview3DCanvas->Refresh();
}
} );
Connect( FP_SELECTION_EVENT, wxCommandEventHandler( DIALOG_FOOTPRINT_CHOOSER::onFpChanged ),
nullptr, this );
}