7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Fix uninitialized member

This commit is contained in:
Jon Evans 2024-08-12 08:27:17 -04:00
parent 522c2b9e7e
commit 4332618e68

View File

@ -53,7 +53,8 @@ public:
PICKER_TOOL_BASE() :
m_frame( nullptr ),
m_snap( false )
m_snap( false ),
m_modifiers( 0 )
{
reset();
}