From d45744b7bb95c8990a248dcf9d1419f3b5a42aa6 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 60efcc429..8d65ae90b 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -172,7 +172,7 @@ wxBitmap* BitmapCache::insert(const std::string &bitmap_key, const wxBitmap *beg height *= 1.0 / scale; #endif - wxBitmap *bitmap = this->insert(bitmap_key, width, height); + wxBitmap *bitmap = this->insert(bitmap_key, width, height, scale); wxMemoryDC memDC; memDC.SelectObject(*bitmap); memDC.SetBackground(*wxTRANSPARENT_BRUSH);