Fix typo in last commit
This commit is contained in:
parent
7fc19b7592
commit
b996c0d2f5
|
@ -205,7 +205,7 @@ FOOTPRINT_EDIT_FRAME::FOOTPRINT_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent,
|
|||
unsigned int auiFlags = wxAUI_MGR_DEFAULT;
|
||||
#if !defined( _WIN32 )
|
||||
// Windows cannot redraw the UI fast enough during a live resize and may lead to all kinds of graphical glitches
|
||||
auiFlags |= wxAUI_MGR_LIVE_RESIZE );
|
||||
auiFlags |= wxAUI_MGR_LIVE_RESIZE;
|
||||
#endif
|
||||
m_auimgr.SetFlags( auiFlags );
|
||||
|
||||
|
|
|
@ -231,7 +231,7 @@ PCB_EDIT_FRAME::PCB_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
|||
unsigned int auiFlags = wxAUI_MGR_DEFAULT;
|
||||
#if !defined( _WIN32 )
|
||||
// Windows cannot redraw the UI fast enough during a live resize and may lead to all kinds of graphical glitches
|
||||
auiFlags |= wxAUI_MGR_LIVE_RESIZE );
|
||||
auiFlags |= wxAUI_MGR_LIVE_RESIZE;
|
||||
#endif
|
||||
m_auimgr.SetFlags( auiFlags );
|
||||
|
||||
|
|
Loading…
Reference in New Issue