Added new files to MackList

This commit is contained in:
YuSanka 2018-04-20 15:02:54 +02:00
parent 669b0b68ab
commit 48bbd2d22a
2 changed files with 3 additions and 1 deletions

View File

@ -208,6 +208,8 @@ add_library(libslic3r_gui STATIC
${LIBDIR}/slic3r/GUI/RammingChart.hpp
${LIBDIR}/slic3r/GUI/BonjourDialog.cpp
${LIBDIR}/slic3r/GUI/BonjourDialog.hpp
${LIBDIR}/slic3r/GUI/ButtonsDescription.cpp
${LIBDIR}/slic3r/GUI/ButtonsDescription.hpp
${LIBDIR}/slic3r/Config/Snapshot.cpp
${LIBDIR}/slic3r/Config/Snapshot.hpp
${LIBDIR}/slic3r/Config/Version.cpp

View File

@ -144,7 +144,7 @@ void Tab::create_preset_tab(PresetBundle *preset_bundle)
m_question_btn->SetBitmap(m_bmp_question);
m_question_btn->Bind(wxEVT_BUTTON, ([this](wxCommandEvent)
{
auto dlg = new ButtonsDescription(parent(), &m_icon_descriptions);
auto dlg = new ButtonsDescription(this, &m_icon_descriptions);
dlg->ShowModal();
}));