From 096af19d9ab5068ad14faa43260273f728327930 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 30 Apr 2023 17:36:27 +0200 Subject: [PATCH] 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 --- eeschema/sch_symbol.cpp | 4 ++-- pcbnew/dialogs/panel_setup_rules_help.md | 2 +- pcbnew/dialogs/panel_setup_rules_help_md.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eeschema/sch_symbol.cpp b/eeschema/sch_symbol.cpp index 3aa2ca8ae8..189a347dcf 100644 --- a/eeschema/sch_symbol.cpp +++ b/eeschema/sch_symbol.cpp @@ -1793,8 +1793,8 @@ void SCH_SYMBOL::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vectorGetDescription() ); - aList.emplace_back( _( "Keywords" ), m_part->GetKeyWords() ); + aList.emplace_back( _( "Description" ) + wxT( ": " ) + m_part->GetDescription(), + _( "Keywords" ) + wxT( ": " ) + m_part->GetKeyWords() ); } } else diff --git a/pcbnew/dialogs/panel_setup_rules_help.md b/pcbnew/dialogs/panel_setup_rules_help.md index 69206e196c..59071c65b2 100644 --- a/pcbnew/dialogs/panel_setup_rules_help.md +++ b/pcbnew/dialogs/panel_setup_rules_help.md @@ -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). \ No newline at end of file +For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/en/pcbnew/pcbnew.html#custom_design_rules). \ No newline at end of file diff --git a/pcbnew/dialogs/panel_setup_rules_help_md.h b/pcbnew/dialogs/panel_setup_rules_help_md.h index 5e60a639c2..40be5c7271 100644 --- a/pcbnew/dialogs/panel_setup_rules_help_md.h +++ b/pcbnew/dialogs/panel_setup_rules_help_md.h @@ -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)." );