From 30fa7158c01809874f40563917f947716baa8bb7 Mon Sep 17 00:00:00 2001 From: Lorenzo Marcantonio Date: Wed, 18 Jan 2012 09:06:48 -0600 Subject: [PATCH] This moves the 'Place Junction' button near the 'No Connection' one, to keep all the labelling tools together in the eeschema toolbar. --- eeschema/tool_sch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eeschema/tool_sch.cpp b/eeschema/tool_sch.cpp index 189d14c15f..21bd8f0720 100644 --- a/eeschema/tool_sch.cpp +++ b/eeschema/tool_sch.cpp @@ -218,15 +218,15 @@ void SCH_EDIT_FRAME::ReCreateVToolbar() m_drawToolBar->AddTool( ID_NOCONN_BUTT, wxEmptyString, KiBitmap( noconn_xpm ), HELP_PLACE_NC_FLAG, wxITEM_CHECK ); + m_drawToolBar->AddTool( ID_JUNCTION_BUTT, wxEmptyString, KiBitmap( add_junction_xpm ), + HELP_PLACE_JUNCTION, wxITEM_CHECK ); + m_drawToolBar->AddTool( ID_LABEL_BUTT, wxEmptyString, KiBitmap( add_line_label_xpm ), HELP_PLACE_NETLABEL, wxITEM_CHECK ); m_drawToolBar->AddTool( ID_GLABEL_BUTT, wxEmptyString, KiBitmap( add_glabel_xpm ), HELP_PLACE_GLOBALLABEL, wxITEM_CHECK ); - m_drawToolBar->AddTool( ID_JUNCTION_BUTT, wxEmptyString, KiBitmap( add_junction_xpm ), - HELP_PLACE_JUNCTION, wxITEM_CHECK ); - m_drawToolBar->AddTool( ID_HIERLABEL_BUTT, wxEmptyString, KiBitmap( add_hierarchical_label_xpm ), HELP_PLACE_HIER_LABEL, wxITEM_CHECK );