From 6588bef1b163968ee30228eef1c031c2b78bc3eb Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 10 Feb 2018 22:50:42 +0000 Subject: [PATCH] Make Ignore-DRC button tooltip Legacy-specific. Fixes: lp:1664173 * https://bugs.launchpad.net/kicad/+bug/1664173 --- pcbnew/toolbars_update_user_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/toolbars_update_user_interface.cpp b/pcbnew/toolbars_update_user_interface.cpp index e7475f9d06..047cfa384b 100644 --- a/pcbnew/toolbars_update_user_interface.cpp +++ b/pcbnew/toolbars_update_user_interface.cpp @@ -135,8 +135,8 @@ void PCB_EDIT_FRAME::OnUpdateDrcEnable( wxUpdateUIEvent& aEvent ) aEvent.Check( state ); m_optionsToolBar->SetToolShortHelp( ID_TB_OPTIONS_DRC_OFF, Settings().m_legacyDrcOn ? - _( "Disable design rule checking while routing/editing tracks" ) : - _( "Enable design rule checking while routing/editing tracks" ) ); + _( "Disable design rule checking while routing/editing tracks using Legacy Graphics.\nUse Preferences > Interactive Routing... for Modern Canvas." ) : + _( "Enable design rule checking while routing/editing tracks using Legacy Graphics.\nUse Preferences > Interactive Routing... for Modern Canvas." ) ); } void PCB_EDIT_FRAME::OnUpdateShowBoardRatsnest( wxUpdateUIEvent& aEvent )