Fix signed/unsigned mismatch.
Fixes: lp:1836626 * https://bugs.launchpad.net/kicad/+bug/1836626
This commit is contained in:
parent
58ca5b71a9
commit
16f672a9bd
|
@ -447,7 +447,7 @@ void EDA_DRAW_FRAME::PopTool( const std::string& actionName )
|
|||
// frame but not processed until the mouse is back in the Schematic frame), so make sure
|
||||
// we're popping the right stack frame.
|
||||
|
||||
for( size_t i = m_toolStack.size() - 1; i >= 0; --i )
|
||||
for( int i = m_toolStack.size() - 1; i >= 0; --i )
|
||||
{
|
||||
if( m_toolStack[ i ] == actionName )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue