Using wxWidgets v2.8.4 on Windows (MinGW).
Should it not be: LockAspect( m_popmenu.IsChecked(mpID_LOCKASPECT) ); instead of: LockAspect( !m_popmenu.IsChecked(mpID_LOCKASPECT) ); ?
Logged In: YES user_id=1867689 Originator: NO
It seems to happen in Windows only: I use MSVS8 and the same happened (In Linux with GCC it works OK).
Anyway, the "bug" is solved by replacing: LockAspect( m_popmenu.IsChecked(mpID_LOCKASPECT) ); by: LockAspect( !m_lockaspect );
Bye, JL
Log in to post a comment.
Logged In: YES
user_id=1867689
Originator: NO
It seems to happen in Windows only: I use MSVS8 and the same happened (In Linux with GCC it works OK).
Anyway, the "bug" is solved by replacing:
LockAspect( m_popmenu.IsChecked(mpID_LOCKASPECT) );
by:
LockAspect( !m_lockaspect );
Bye,
JL