Commit 628e5240 authored by jean-pierre charras's avatar jean-pierre charras

Fix a minor issue in Pcbnew

parent 3e570c1a
...@@ -211,14 +211,15 @@ BOARD_ITEM* PCB_BASE_FRAME::PcbGeneralLocateAndDisplay( int aHotKeyCode ) ...@@ -211,14 +211,15 @@ BOARD_ITEM* PCB_BASE_FRAME::PcbGeneralLocateAndDisplay( int aHotKeyCode )
// this menu's handler is void PCB_BASE_FRAME::ProcessItemSelection() // this menu's handler is void PCB_BASE_FRAME::ProcessItemSelection()
// and it calls SetCurItem() which in turn calls DisplayInfo() on the item. // and it calls SetCurItem() which in turn calls DisplayInfo() on the item.
DrawPanel->m_AbortRequest = true; // changed in false if an item DrawPanel->m_AbortRequest = true; // changed in false if an item is selected
PopupMenu( &itemMenu ); // m_AbortRequest = false if an item is selected PopupMenu( &itemMenu );
DrawPanel->MoveCursorToCrossHair(); DrawPanel->MoveCursorToCrossHair();
// DrawPanel->m_IgnoreMouseEvents = false;
// The function ProcessItemSelection() has set the current item, return it. // The function ProcessItemSelection() has set the current item, return it.
if( DrawPanel->m_AbortRequest ) // Nothing selected
item = NULL;
else
item = GetCurItem(); item = GetCurItem();
} }
......
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