Handle SPICE prefixes for operating point data.

Also adjusts the min-pin lenght as some symbols have very short pins.
This commit is contained in:
Jeff Young 2023-02-13 18:38:43 +00:00
parent b53e0a85b8
commit be0a9e2738
2 changed files with 5 additions and 1 deletions

View File

@ -1352,6 +1352,10 @@ void SCH_EDIT_FRAME::RefreshOperatingPointDisplay()
{
SIM_MODEL& model = simLibMgr.CreateModel( &GetCurrentSheet(), *symbol ).model;
SPICE_ITEM spiceItem;
spiceItem.refName = ref;
ref = model.SpiceGenerator().ItemName( spiceItem );
for( const auto& modelPin : model.GetPins() )
{
SCH_PIN* symbolPin = symbol->GetPin( modelPin.get().symbolPinNumber );

View File

@ -1357,7 +1357,7 @@ void SCH_PAINTER::draw( const LIB_PIN *aPin, int aLayer, bool aDimmed )
int textOffset = KiROUND( textSize * 0.22 );
TEXT_ATTRIBUTES attrs;
if( len > KiROUND( textSize * 1.8 ) )
if( len > textSize )
{
if( dir.x == 0 )
{