hintbox.cpp: fix scale of box width

Origin commit data
------------------
Commit: 8c4badf007
Author: GetAway <get-away@t-online.de>
Date: 2018-10-16 (Tue, 16 Oct 2018)
This commit is contained in:
GetAway
2018-10-16 23:57:28 +02:00
committed by vanhofen
parent 7f682053d3
commit 85044fc000

View File

@@ -131,6 +131,7 @@ CHintBox::CHintBox( const char * const Caption,
void CHintBox::init(const std::string& Text, const int& Width, const std::string& Picon, const int& header_buttons, const int& text_mode, const int& indent)
{
int _Width = frameBuffer->scale2Res(Width);
timeout = HINTBOX_DEFAULT_TIMEOUT;
w_indentation = indent;
@@ -146,7 +147,7 @@ void CHintBox::init(const std::string& Text, const int& Width, const std::string
showHeader(false);
//set required window width and basic height, consider existent header instance and its caption width
width = getMaxWidth(Text, ccw_caption, hb_font, Width);
width = getMaxWidth(Text, ccw_caption, hb_font, _Width);
height = max(HINTBOX_MIN_HEIGHT, min(HINTBOX_MAX_HEIGHT, height));
ccw_buttons = header_buttons;