Minor fix and cosmetic change:
- SCH_SYMBOL::GetMsgPanelInfo(): slighly change the displayed lines to allow longer strings in Description and Keywords - panel_setup_rules_help.md: fix incorrect html link (URI), creating ERR 404
This commit is contained in:
parent
c1bebf6490
commit
096af19d9a
|
@ -1793,8 +1793,8 @@ void SCH_SYMBOL::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_
|
|||
aList.emplace_back( _( "Footprint" ), msg );
|
||||
|
||||
// Display description of the symbol, and keywords found in lib
|
||||
aList.emplace_back( _( "Description" ), m_part->GetDescription() );
|
||||
aList.emplace_back( _( "Keywords" ), m_part->GetKeyWords() );
|
||||
aList.emplace_back( _( "Description" ) + wxT( ": " ) + m_part->GetDescription(),
|
||||
_( "Keywords" ) + wxT( ": " ) + m_part->GetKeyWords() );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
@ -325,4 +325,4 @@ Deprecated; use `intersectsArea()` instead.
|
|||
|
||||
### Documentation
|
||||
|
||||
For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules).
|
||||
For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/en/pcbnew/pcbnew.html#custom_design_rules).
|
|
@ -326,4 +326,4 @@ _HKI( "### Top-level Clauses\n"
|
|||
"\n"
|
||||
"### Documentation\n"
|
||||
"\n"
|
||||
"For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules)." );
|
||||
"For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/en/pcbnew/pcbnew.html#custom_design_rules)." );
|
||||
|
|
Loading…
Reference in New Issue