mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Fixed bug with case-sensitive name of icon (for Linux build)
This commit is contained in:
parent
c52f51b1e4
commit
dd7712d4d3
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace Slic3r { namespace GUI {
|
||||||
// use bouth of temporary_icons till don't have "undo_icon"
|
// use bouth of temporary_icons till don't have "undo_icon"
|
||||||
auto color = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
|
auto color = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
|
||||||
if (wxMSW) m_Undo_btn->SetBackgroundColour(color);
|
if (wxMSW) m_Undo_btn->SetBackgroundColour(color);
|
||||||
m_Undo_btn->SetBitmap(wxBitmap(from_u8(var("Bullet_white.png")), wxBITMAP_TYPE_PNG));
|
m_Undo_btn->SetBitmap(wxBitmap(from_u8(var("bullet_white.png")), wxBITMAP_TYPE_PNG));
|
||||||
m_Undo_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent){ on_back_to_initial_value(); }));
|
m_Undo_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent){ on_back_to_initial_value(); }));
|
||||||
|
|
||||||
BUILD();
|
BUILD();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue