GUI: RTL: Fix tooltip rendering

This commit is contained in:
aryanrawlani28 2020-05-09 23:28:51 +05:30 committed by Eugene Sandulenko
parent 1bd2701597
commit 9593b3b3fe

View File

@ -54,6 +54,10 @@ void Tooltip::setup(Dialog *parent, Widget *widget, int x, int y) {
_x = MIN<int16>(parent->_x + x + _xdelta, g_gui.getWidth() - _w - 3);
_y = MIN<int16>(parent->_y + y + _ydelta, g_gui.getHeight() - _h - 3);
if (g_gui.useRTL())
_x = g_system->getOverlayWidth() - _w - _x;
#ifdef USE_TTS
if (ConfMan.hasKey("tts_enabled", "scummvm") &&
ConfMan.getBool("tts_enabled", "scummvm")) {
@ -86,7 +90,7 @@ void Tooltip::drawDialog(DrawLayer layerToDraw) {
ThemeEngine::kFontColorNormal,
false
);
}
}
}
}