Improved rendering when deleting an option from object's overrides.
Replaced the single column icon with an empty icon. Will it break something? The single column added an ugly spacer in front of non-editable combo boxes.
This commit is contained in:
parent
c623cbc4d7
commit
4f585f1157
2 changed files with 7 additions and 1 deletions
src/slic3r/GUI
|
@ -10,6 +10,8 @@
|
|||
|
||||
#include "I18N.hpp"
|
||||
|
||||
#include <wx/wupdlock.h>
|
||||
|
||||
namespace Slic3r
|
||||
{
|
||||
namespace GUI
|
||||
|
@ -84,6 +86,7 @@ void ObjectSettings::update_settings_list()
|
|||
btn->Bind(wxEVT_BUTTON, [opt_key, config, this](wxEvent &event) {
|
||||
config->erase(opt_key);
|
||||
wxTheApp->CallAfter([this]() {
|
||||
wxWindowUpdateLocker noUpdates(m_parent);
|
||||
update_settings_list();
|
||||
m_parent->Layout();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue