mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-05 00:15:30 +00:00
Fix compile warnings
This commit is contained in:
parent
290dc417d9
commit
914c015494
@ -336,7 +336,6 @@ void BITMAP_BUTTON::OnPaint( wxPaintEvent& aEvent )
|
||||
|
||||
wxPoint drawBmpPos( m_padding, m_padding );
|
||||
wxBitmap bmpImg;
|
||||
double scale = KIPLATFORM::UI::GetContentScaleFactor( this );
|
||||
wxSize bmSize;
|
||||
|
||||
if( bmp.IsOk() )
|
||||
|
@ -982,8 +982,10 @@ void PCB_NET_INSPECTOR_PANEL::OnBoardItemsAdded( BOARD& aBoar
|
||||
if( !IsShownOnScreen() )
|
||||
return;
|
||||
|
||||
const size_t threshold = ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold;
|
||||
|
||||
// Rebuild full netlist for large changes
|
||||
if( aBoardItems.size() > ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold )
|
||||
if( aBoardItems.size() > threshold )
|
||||
{
|
||||
buildNetsList();
|
||||
m_netsList->Refresh();
|
||||
@ -1065,7 +1067,9 @@ void PCB_NET_INSPECTOR_PANEL::OnBoardItemsRemoved( BOARD& aBo
|
||||
if( !IsShownOnScreen() )
|
||||
return;
|
||||
|
||||
if( aBoardItems.size() > ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold )
|
||||
const size_t threshold = ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold;
|
||||
|
||||
if( aBoardItems.size() > threshold )
|
||||
{
|
||||
buildNetsList();
|
||||
m_netsList->Refresh();
|
||||
@ -1123,7 +1127,7 @@ void PCB_NET_INSPECTOR_PANEL::OnBoardCompositeUpdate( BOARD&
|
||||
if( !IsShownOnScreen() )
|
||||
return;
|
||||
|
||||
const int threshold = ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold;
|
||||
const size_t threshold = ADVANCED_CFG::GetCfg().m_NetInspectorBulkUpdateOptimisationThreshold;
|
||||
|
||||
// Rebuild the full list if the number of items affected is > the optimisation threshold
|
||||
// Note: Always rebuild for any changed items as there is no way to determine what property
|
||||
|
Loading…
Reference in New Issue
Block a user