Changed icons for lock/unlock filament_presets on Plater tab

Experiment with filament_presets transparency on GTK
This commit is contained in:
YuSanka 2018-04-11 15:35:04 +02:00
parent 762306d985
commit 723bd22b96
2 changed files with 6 additions and 3 deletions

View file

@ -88,7 +88,10 @@ wxBitmap* BitmapCache::insert(const std::string &bitmap_key, std::vector<wxBitma
wxMemoryDC memDC;
memDC.SelectObject(*bitmap);
memDC.SetBackground(*wxTRANSPARENT_BRUSH);
#ifdef __WXGTK__
#else
memDC.SetBackground(*wxTRANSPARENT_BRUSH);
#endif
memDC.Clear();
size_t x = 0;
for (wxBitmap &bmp : bmps) {