Metin2 [C ++] Small Fix - Taskbar Issue After VS Update

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Blaze

Elite
Elite
VIP
Joined
Jan 28, 2019
Messages
507
Credits
635
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 ;
113e6985dbc3c77b11d0e56741097335.png


Corrected version ;

1ec6db84356c5e5319080ccfd1b281b4.png


PythonSystem.cpp opens and the following code is searched;
C++:
Expand Collapse Copy
if (m_Config.height >= screen_height)
And it is replaced by;
C++:
Expand Collapse Copy
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;
}
 
Back
Top