Fix table scrollbar scaling

master
MoNTE48 2022-01-08 22:23:06 +02:00
parent 12016bcf8b
commit fff7263b28
2 changed files with 2 additions and 3 deletions

View File

@ -138,6 +138,8 @@ bool ClientLauncher::run(GameParams &game_params, const Settings &cmd_args)
skin->setColor(gui::EGDC_3D_SHADOW, video::SColor(255, 0, 0, 0));
skin->setColor(gui::EGDC_HIGH_LIGHT, video::SColor(255, 70, 120, 50));
skin->setColor(gui::EGDC_HIGH_LIGHT_TEXT, video::SColor(255, 255, 255, 255));
float density = porting::getDisplayDensity() * g_settings->getFloat("gui_scaling");
skin->setSize(gui::EGDS_SCROLLBAR_SIZE, (s32) (14.0f * density));
g_fontengine = new FontEngine(g_settings, guienv);
FATAL_ERROR_IF(g_fontengine == NULL, "Font engine creation failed.");

View File

@ -68,9 +68,6 @@ GUITable::GUITable(gui::IGUIEnvironment *env,
gui::IGUISkin* skin = Environment->getSkin();
// 15 is default EGDS_SCROLLBAR_SIZE value
skin->setSize(irr::gui::EGDS_SCROLLBAR_SIZE, 15 * scale);
m_font = skin->getFont();
if (m_font) {
m_font->grab();