Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix console resize issue when maximising game window (#6023)
  • Loading branch information
Ezhh authored and nerzhul committed Jun 21, 2017
1 parent b823709 commit 76074ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guiChatConsole.cpp
Expand Up @@ -186,8 +186,8 @@ void GUIChatConsole::draw()
// scale current console height to new window size
if (m_screensize.Y != 0)
m_height = m_height * screensize.Y / m_screensize.Y;
m_desired_height = m_desired_height_fraction * m_screensize.Y;
m_screensize = screensize;
m_desired_height = m_desired_height_fraction * m_screensize.Y;
reformatConsole();
}

Expand Down

0 comments on commit 76074ad

Please sign in to comment.