mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
pcb_calculator, PANEL_ATTENUATORS: minor fix: disable R3 settings when not in use.
This commit is contained in:
parent
3e53426b6c
commit
1d87ed6454
@ -138,6 +138,12 @@ void PANEL_ATTENUATORS::SetAttenuator( unsigned aIdx )
|
|||||||
m_Att_R1_Value->SetValue( wxEmptyString );
|
m_Att_R1_Value->SetValue( wxEmptyString );
|
||||||
m_Att_R2_Value->SetValue( wxEmptyString );
|
m_Att_R2_Value->SetValue( wxEmptyString );
|
||||||
m_Att_R3_Value->SetValue( wxEmptyString );
|
m_Att_R3_Value->SetValue( wxEmptyString );
|
||||||
|
|
||||||
|
// Disable R3 for bridget T attenuator only
|
||||||
|
bool enable = aIdx != 2;
|
||||||
|
m_attenuatorR3Label->Enable( enable );
|
||||||
|
m_Att_R3_Value->Enable( enable );
|
||||||
|
m_attR3Unit->Enable( enable );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user