Commit b41e4e69 authored by charras's avatar charras

macOSX: fixed GetMBarHeight( ) problem.

parent 5eddb1f4
......@@ -145,11 +145,10 @@ void WinEDA3D_DrawFrame::GetSettings()
config->Read( wxT( "BgColor_Blue" ),
&g_Parm_3D_Visu.m_BgColor.m_Blue, 0.0 );
}
#if defined( __WXMAC__ ) && !defined( __WXOSX_COCOA__ )
#if defined( __WXMAC__ )
// for macOSX, the window must be below system (macOSX) toolbar
if( m_FramePos.y < GetMBarHeight() )
m_FramePos.y = GetMBarHeight();
if( m_FramePos.y < 20 )
m_FramePos.y = 20;
#endif
}
......
......@@ -106,10 +106,10 @@ void WinEDA_BasicFrame::LoadSettings()
}
// Ensure Window title bar is visible
#if defined( __WXMAC__ ) && !defined( __WXOSX_COCOA__ )
#if defined( __WXMAC__ )
// for macOSX, the window must be below system (macOSX) toolbar
Ypos_min = GetMBarHeight();
// Ypos_min = GetMBarHeight(); seems no more exist in ne API (subject to change)
Ypos_min = 20;
#else
Ypos_min = 0;
#endif
......
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