What Will We Fix?
When you switch from Vs 2013 to 2019, the taskbar scrolls down a bit and the part with your skills is not fully visible, we will fix it.
The first version ;
Corrected version ;
PythonSystem.cpp opens and the following code is searched;
And it is replaced by;
When you switch from Vs 2013 to 2019, the taskbar scrolls down a bit and the part with your skills is not fully visible, we will fix it.
The first version ;
Corrected version ;
PythonSystem.cpp opens and the following code is searched;
C++:
if (m_Config.height >= screen_height)
C++:
if (m_Config.height >= screen_height)
{
int config_height = m_Config.height;
int difference = (config_height-screen_height)+7;
m_Config.height = config_height - difference;
}


