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:
jean-pierre charras 2023-04-30 17:36:27 +02:00
parent c1bebf6490
commit 096af19d9a
3 changed files with 4 additions and 4 deletions

View File

@ -1793,8 +1793,8 @@ void SCH_SYMBOL::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_
aList.emplace_back( _( "Footprint" ), msg ); aList.emplace_back( _( "Footprint" ), msg );
// Display description of the symbol, and keywords found in lib // Display description of the symbol, and keywords found in lib
aList.emplace_back( _( "Description" ), m_part->GetDescription() ); aList.emplace_back( _( "Description" ) + wxT( ": " ) + m_part->GetDescription(),
aList.emplace_back( _( "Keywords" ), m_part->GetKeyWords() ); _( "Keywords" ) + wxT( ": " ) + m_part->GetKeyWords() );
} }
} }
else else

View File

@ -325,4 +325,4 @@ Deprecated; use `intersectsArea()` instead.
### Documentation ### 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).

View File

@ -326,4 +326,4 @@ _HKI( "### Top-level Clauses\n"
"\n" "\n"
"### Documentation\n" "### Documentation\n"
"\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)." );