mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix console resize issue when maximising game window (#6023)
This commit is contained in:
parent
b8237099b2
commit
76074ad81a
1 changed files with 1 additions and 1 deletions
|
@ -186,8 +186,8 @@ void GUIChatConsole::draw()
|
||||||
// scale current console height to new window size
|
// scale current console height to new window size
|
||||||
if (m_screensize.Y != 0)
|
if (m_screensize.Y != 0)
|
||||||
m_height = m_height * screensize.Y / m_screensize.Y;
|
m_height = m_height * screensize.Y / m_screensize.Y;
|
||||||
m_desired_height = m_desired_height_fraction * m_screensize.Y;
|
|
||||||
m_screensize = screensize;
|
m_screensize = screensize;
|
||||||
|
m_desired_height = m_desired_height_fraction * m_screensize.Y;
|
||||||
reformatConsole();
|
reformatConsole();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue