1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-13 08:24:27 +00:00

Fixed Typo for the last commit

This commit is contained in:
YuSanka
2019-04-05 12:17:45 +02:00
parent 233eda2813
commit d31590f438
+2 -2
View File
@@ -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;
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)
bmp = cache.load_png(bmp_name, height, width);
bmp = cache.load_png(bmp_name, width, height);
return *bmp;
}