Skip to content

Commit

Permalink
ticket:4348 Set a minimum width for DuplicateClassDialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed May 4, 2017
1 parent c3006bd commit 1a18b3b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions OMEdit/OMEditGUI/Modeling/ModelicaClassDialog.cpp
Expand Up @@ -718,6 +718,7 @@ void SaveAsClassDialog::showHideSaveContentsInOneFileCheckBox(QString text)
DuplicateClassDialog::DuplicateClassDialog(bool saveAs, LibraryTreeItem *pLibraryTreeItem, QWidget *pParent)
: QDialog(pParent), mpLibraryTreeItem(pLibraryTreeItem)
{
setMinimumWidth(400);
setAttribute(Qt::WA_DeleteOnClose);
mSaveAs = saveAs;
QString heading = mSaveAs ? Helper::saveAs : Helper::duplicate;
Expand Down

0 comments on commit 1a18b3b

Please sign in to comment.