Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2020-01-28 18:23:05 +0300
committerYuSanka <yusanka@gmail.com>2020-01-28 18:40:31 +0300
commitd45744b7bb95c8990a248dcf9d1419f3b5a42aa6 (patch)
treec811d32a0491af3072c9af5e632b58d7099f1887 /src/slic3r/GUI/BitmapCache.cpp
parentcd2973fad361a8dd392ac4342c08a464f2b8fce5 (diff)
Typo fix for https://github.com/prusa3d/PrusaSlicer/commit/a38735b4ae78611fe10f3422ccfd54e690ce1a88
Diffstat (limited to 'src/slic3r/GUI/BitmapCache.cpp')
-rw-r--r--src/slic3r/GUI/BitmapCache.cpp2
1 files changed, 1 insertions, 1 deletions
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);