diff --git a/src/slic3r/GUI/Widgets/DropDown.cpp b/src/slic3r/GUI/Widgets/DropDown.cpp index ba1a3117f..ce309afb0 100644 --- a/src/slic3r/GUI/Widgets/DropDown.cpp +++ b/src/slic3r/GUI/Widgets/DropDown.cpp @@ -478,7 +478,7 @@ void DropDown::sendDropDownEvent() wxCommandEvent event(wxEVT_COMBOBOX, GetId()); event.SetEventObject(this); event.SetInt(hover_item); - event.SetString(GetValue()); + event.SetString(texts[hover_item]); GetEventHandler()->ProcessEvent(event); }