Skip to content
Snippets Groups Projects
Commit 68aaa1ff authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

AssocDialog needs to be modal, like PlotDialog, re #7113

parent 7479c6d8
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,9 @@
AssociationsDialog::AssociationsDialog( Graph* g, Qt::WFlags fl )
: QDialog( g, fl )
{
setName( "AssociationsDialog" );
setWindowTitle( tr( "MantidPlot - Plot Associations" ) );
setName( "AssociationsDialog" );
setWindowTitle( tr( "MantidPlot - Plot Associations" ) );
setModal(true);
setSizeGripEnabled(true);
setFocus();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment