mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-13 05:09:03 +08:00
Fixed Typo for the last commit
This commit is contained in:
parent
233eda2813
commit
d31590f438
@ -434,9 +434,9 @@ wxBitmap create_scaled_bitmap(const std::string& bmp_name_in, const bool is_hori
|
|||||||
|
|
||||||
std::string bmp_name = bmp_name_in;
|
std::string bmp_name = bmp_name_in;
|
||||||
boost::replace_last(bmp_name, ".png", "");
|
boost::replace_last(bmp_name, ".png", "");
|
||||||
wxBitmap *bmp = cache.load_svg(bmp_name, height, width);
|
wxBitmap *bmp = cache.load_svg(bmp_name, width, height);
|
||||||
if (bmp == nullptr)
|
if (bmp == nullptr)
|
||||||
bmp = cache.load_png(bmp_name, height, width);
|
bmp = cache.load_png(bmp_name, width, height);
|
||||||
return *bmp;
|
return *bmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user