From b30405b57254856444afcb13296fb2e10dd6f0f0 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 14 May 2019 09:40:04 +0200 Subject: [PATCH] Fixed typo (image grayscaling) --- src/slic3r/GUI/BitmapCache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/BitmapCache.cpp b/src/slic3r/GUI/BitmapCache.cpp index efa35a511..3e8924143 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -189,7 +189,7 @@ wxBitmap* BitmapCache::insert_raw_rgba(const std::string &bitmap_key, unsigned w } if (grayscale) - image.ConvertToGreyscale(m_gs, m_gs, m_gs); + image = image.ConvertToGreyscale(m_gs, m_gs, m_gs); return this->insert(bitmap_key, wxImage_to_wxBitmap_with_alpha(std::move(image), scale)); } @@ -220,7 +220,7 @@ wxBitmap* BitmapCache::load_png(const std::string &bitmap_name, unsigned int wid image.Rescale(width, height, wxIMAGE_QUALITY_BILINEAR); if (grayscale) - image.ConvertToGreyscale(m_gs, m_gs, m_gs); + image = image.ConvertToGreyscale(m_gs, m_gs, m_gs); return this->insert(bitmap_key, wxImage_to_wxBitmap_with_alpha(std::move(image))); }