diff options
| author | Peter Kohaut | 2019-01-08 17:31:43 +0100 | 
|---|---|---|
| committer | Peter Kohaut | 2019-01-08 17:32:24 +0100 | 
| commit | 05a4464c01e077fe58d6c7c70d05cdc7c3546378 (patch) | |
| tree | 7ccd0e1e0001f5566c3e027e6fcb415394b5863c | |
| parent | eb653fbfc79da8e7b853f4f9c0c0bf5045f030ec (diff) | |
| download | scummvm-rg350-05a4464c01e077fe58d6c7c70d05cdc7c3546378.tar.gz scummvm-rg350-05a4464c01e077fe58d6c7c70d05cdc7c3546378.tar.bz2 scummvm-rg350-05a4464c01e077fe58d6c7c70d05cdc7c3546378.zip | |
BLADERUNNER: Fix tooltip frame
Text was touching bottom edge of the tooltip.
| -rw-r--r-- | engines/bladerunner/ui/ui_image_picker.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/bladerunner/ui/ui_image_picker.cpp b/engines/bladerunner/ui/ui_image_picker.cpp index 7055fe31d6..cb7b61da8a 100644 --- a/engines/bladerunner/ui/ui_image_picker.cpp +++ b/engines/bladerunner/ui/ui_image_picker.cpp @@ -262,7 +262,7 @@ void UIImagePicker::drawTooltip(Graphics::Surface &surface, int x, int y) {  		rect.left = 636 - width;  	} -	rect.bottom = height + rect.top + 1; +	rect.bottom = height + rect.top + 2;  	if (rect.bottom >= 480) {  		rect.bottom = 479;  		rect.top = 478 - height; | 
