From beb5bad9b73eeab261859b22910a1290004adff5 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 21 Jul 2020 01:14:56 +0100 Subject: [PATCH] Initialize Scintilla with correct braces for sexpr grammar. --- pcbnew/dialogs/panel_setup_rules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/dialogs/panel_setup_rules.cpp b/pcbnew/dialogs/panel_setup_rules.cpp index 7640419b2b..52a2cfea74 100644 --- a/pcbnew/dialogs/panel_setup_rules.cpp +++ b/pcbnew/dialogs/panel_setup_rules.cpp @@ -37,7 +37,7 @@ PANEL_SETUP_RULES::PANEL_SETUP_RULES( PAGED_DIALOG* aParent, PCB_EDIT_FRAME* aFr m_frame( aFrame ), m_scintillaTricks( nullptr ) { - m_scintillaTricks = new SCINTILLA_TRICKS( m_textEditor, wxT( "{}" ) ); + m_scintillaTricks = new SCINTILLA_TRICKS( m_textEditor, wxT( "()" ) ); int size = wxNORMAL_FONT->GetPointSize(); wxFont fixedFont( size, wxFONTFAMILY_TELETYPE, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL );