Commit f03bee4b authored by charras's avatar charras

Pcbnew minor fix (regression fix)

parent 113f83b2
......@@ -459,7 +459,7 @@ void WinEDA_PcbFrame::createPopupMenuForTracks( TRACK* Track, wxMenu* PopMenu )
}
// track Width control :
if( !flags ) // track Width control :
if( !flags )
{
if( Track->Type() == TYPE_VIA )
{
......@@ -482,6 +482,14 @@ void WinEDA_PcbFrame::createPopupMenuForTracks( TRACK* Track, wxMenu* PopMenu )
PopMenu->AppendSeparator();
}
else // Allows switching to an other track/via size when routing
{
ADD_MENUITEM_WITH_SUBMENU( PopMenu, Append_Track_Width_List( GetBoard() ),
ID_POPUP_PCB_SELECT_WIDTH,
_( "Select Track Width" ), width_track_xpm );
PopMenu->AppendSeparator();
}
// Delete control:
wxMenu* track_mnu = new wxMenu;
ADD_MENUITEM_WITH_SUBMENU( PopMenu, track_mnu,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment