mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix wrong use of guiScalingImageButton in formspecs buttons (#10094)
This commit is contained in:
parent
646af2ef5f
commit
ee6c499ff8
2 changed files with 4 additions and 6 deletions
|
@ -789,13 +789,12 @@ void GUIButton::setFromStyle(const StyleSpec& style)
|
|||
setDrawBorder(style.getBool(StyleSpec::BORDER, true));
|
||||
setUseAlphaChannel(style.getBool(StyleSpec::ALPHA, true));
|
||||
|
||||
const core::position2di buttonCenter(AbsoluteRect.getCenter());
|
||||
core::position2d<s32> geom(buttonCenter);
|
||||
if (style.isNotDefault(StyleSpec::BGIMG)) {
|
||||
video::ITexture *texture = style.getTexture(StyleSpec::BGIMG,
|
||||
getTextureSource());
|
||||
setImage(guiScalingImageButton(
|
||||
Environment->getVideoDriver(), texture, geom.X, geom.Y));
|
||||
Environment->getVideoDriver(), texture,
|
||||
AbsoluteRect.getWidth(), AbsoluteRect.getHeight()));
|
||||
setScaleImage(true);
|
||||
} else {
|
||||
setImage(nullptr);
|
||||
|
|
|
@ -62,13 +62,12 @@ void GUIButtonImage::setFromStyle(const StyleSpec& style)
|
|||
|
||||
video::IVideoDriver *driver = Environment->getVideoDriver();
|
||||
|
||||
const core::position2di buttonCenter(AbsoluteRect.getCenter());
|
||||
core::position2d<s32> geom(buttonCenter);
|
||||
if (style.isNotDefault(StyleSpec::FGIMG)) {
|
||||
video::ITexture *texture = style.getTexture(StyleSpec::FGIMG,
|
||||
getTextureSource());
|
||||
|
||||
setForegroundImage(guiScalingImageButton(driver, texture, geom.X, geom.Y));
|
||||
setForegroundImage(guiScalingImageButton(driver, texture,
|
||||
AbsoluteRect.getWidth(), AbsoluteRect.getHeight()));
|
||||
setScaleImage(true);
|
||||
} else {
|
||||
setForegroundImage(nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue