From cd2973fad361a8dd392ac4342c08a464f2b8fce5 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 28 Jan 2020 16:23:05 +0100 Subject: [PATCH] Typo fix for https://github.com/prusa3d/PrusaSlicer/commit/a38735b4ae78611fe10f3422ccfd54e690ce1a88 --- src/slic3r/GUI/BitmapCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/BitmapCache.cpp b/src/slic3r/GUI/BitmapCache.cpp index b80ac1726..60efcc429 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -61,7 +61,7 @@ wxBitmap* BitmapCache::insert(const std::string &bitmap_key, size_t width, size_ // So, We need to let the Mac OS wxBitmap implementation // know that the image may already be scaled appropriately for Retina, // and thereby that it's not supposed to upscale it. - return bitmap->CreateScaled(width, height, scale); + bitmap->CreateScaled(width, height, -1, scale); #endif m_map[bitmap_key] = bitmap; } else {