From cbbc2f42e8d004aa268b2347d47c64dae5fdcf82 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Fri, 6 Sep 2013 17:06:33 +0200 Subject: [PATCH] Starts the GAL by default. --- pcbnew/pcbnew.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcbnew/pcbnew.cpp b/pcbnew/pcbnew.cpp index 061f465d4a..285a0ba1d5 100644 --- a/pcbnew/pcbnew.cpp +++ b/pcbnew/pcbnew.cpp @@ -314,6 +314,9 @@ bool EDA_APP::OnInit() frame->SetFocus(); frame->GetCanvas()->SetFocus(); + // Activate the GAL + frame->UseGalCanvas( true ); + return true; }