mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-04 18:28:03 +01:00
(svn r27023) -Codechange: Scale tooltip size by UI scale.
This commit is contained in:
parent
c794b88681
commit
3730ed67cb
@ -25,6 +25,7 @@
|
|||||||
#include "querystring_gui.h"
|
#include "querystring_gui.h"
|
||||||
#include "core/geometry_func.hpp"
|
#include "core/geometry_func.hpp"
|
||||||
#include "newgrf_debug.h"
|
#include "newgrf_debug.h"
|
||||||
|
#include "zoom_func.h"
|
||||||
|
|
||||||
#include "widgets/misc_widget.h"
|
#include "widgets/misc_widget.h"
|
||||||
|
|
||||||
@ -683,7 +684,7 @@ struct TooltipsWindow : public Window
|
|||||||
/* There is only one widget. */
|
/* There is only one widget. */
|
||||||
for (uint i = 0; i != this->paramcount; i++) SetDParam(i, this->params[i]);
|
for (uint i = 0; i != this->paramcount; i++) SetDParam(i, this->params[i]);
|
||||||
|
|
||||||
size->width = min(GetStringBoundingBox(this->string_id).width, 194);
|
size->width = min(GetStringBoundingBox(this->string_id).width, UnScaleByZoom(4 * 194, ZOOM_LVL_GUI));
|
||||||
size->height = GetStringHeight(this->string_id, size->width);
|
size->height = GetStringHeight(this->string_id, size->width);
|
||||||
|
|
||||||
/* Increase slightly to have some space around the box. */
|
/* Increase slightly to have some space around the box. */
|
||||||
|
Loading…
Reference in New Issue
Block a user