Revert "Add doc link to custom rules syntax help."

This reverts commit 7874735810.
This commit is contained in:
Seth Hillbrand 2023-02-10 15:33:03 -08:00
parent 81a55c42a1
commit fda3feaf3f
4 changed files with 2 additions and 29 deletions

View File

@ -25,10 +25,8 @@
#include <wx/clipbrd.h>
#include <wx/log.h>
#include <wx/textctrl.h>
#include <wx/uri.h>
#include <string_utils.h>
#include <dialogs/html_message_box.h>
#include <build_version.h>
HTML_MESSAGE_BOX::HTML_MESSAGE_BOX( wxWindow* aParent, const wxString& aTitle,
@ -146,20 +144,6 @@ void HTML_MESSAGE_BOX::ShowModeless()
}
void HTML_MESSAGE_BOX::OnHTMLLinkClicked( wxHtmlLinkEvent& event )
{
wxString href = event.GetLinkInfo().GetHref();
if( href.StartsWith( wxS( "https://docs.kicad.org/" ) ) )
{
href.Replace( wxS( "GetMajorMinorVersion" ), GetMajorMinorVersion() );
wxURI uri( href );
wxLaunchDefaultBrowser( uri.BuildURI() );
}
}
void HTML_MESSAGE_BOX::OnCharHook( wxKeyEvent& aEvent )
{
// shift-return (Mac default) or Ctrl-Return (GTK) for OK

View File

@ -83,9 +83,6 @@ public:
*/
void ShowModeless();
void OnHTMLLinkClicked( wxHtmlLinkEvent& event ) override;
protected:
void reload();

View File

@ -312,7 +312,3 @@ Deprecated; use `intersectsArea()` instead.
(constraint track_width (min 1.0mm))
(constraint connection_width (min 0.8mm))
(condition "A.NetClass == 'Power'"))
### Documentation
For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules).

View File

@ -312,8 +312,4 @@ _HKI( "### Top-level Clauses\n"
" (rule high-current\n"
" (constraint track_width (min 1.0mm))\n"
" (constraint connection_width (min 0.8mm))\n"
" (condition \"A.NetClass == 'Power'\"))\n"
"\n"
"### Documentation\n"
"\n"
"For the full documentation see [https://docs.kicad.org](https://docs.kicad.org/GetMajorMinorVersion/pcbnew/#custom_design_rules)." );
" (condition \"A.NetClass == 'Power'\"))" );