Changed mode of the OblectList to Multiple selection
This commit is contained in:
parent
05c016764f
commit
30f3ec3d16
4 changed files with 16 additions and 3 deletions
src/slic3r/GUI
|
@ -176,7 +176,8 @@ void ObjectManipulation::update_settings_list()
|
|||
auto config = wxGetApp().obj_list()->m_config;
|
||||
|
||||
const auto item = objects_ctrl->GetSelection();
|
||||
if (config && objects_model->IsSettingsItem(item))
|
||||
if (!objects_ctrl->multiple_selection() &&
|
||||
config && objects_model->IsSettingsItem(item))
|
||||
{
|
||||
auto extra_column = [config](wxWindow* parent, const Line& line)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue