diff --git a/src/slic3r/GUI/MsgDialog.cpp b/src/slic3r/GUI/MsgDialog.cpp index 3615a05a4..cf37722c2 100644 --- a/src/slic3r/GUI/MsgDialog.cpp +++ b/src/slic3r/GUI/MsgDialog.cpp @@ -311,12 +311,13 @@ static void add_msg_content(wxWindow *parent, page_size = wxSize(68 * em, page_height); } else { -#ifdef __WINDOWS__ - Label* wrapped_text = new Label(html, msg); - wrapped_text->Wrap(68 * em); - msg = wrapped_text->GetLabel(); - wrapped_text->Destroy(); -#endif //__WINDOWS__ +// Extra line breaks in message dialog +//#ifdef __WINDOWS__ +// Label* wrapped_text = new Label(html, msg); +// wrapped_text->Wrap(68 * em); +// msg = wrapped_text->GetLabel(); +// wrapped_text->Destroy(); +//#endif //__WINDOWS__ wxClientDC dc(parent); wxSize msg_sz = dc.GetMultiLineTextExtent(msg);