Skip to content
Snippets Groups Projects
Commit 5dfc59db authored by Jay Rainey's avatar Jay Rainey
Browse files

Merge remote-tracking branch 'origin/bugfix/9172_muon_close_on_da_tab_crash'

parents 08c62241 93c640fa
No related branches found
No related tags found
No related merge requests found
...@@ -88,9 +88,8 @@ m_width_set(true),m_width(0),m_addingPeak(false),m_resetting(false) ...@@ -88,9 +88,8 @@ m_width_set(true),m_width(0),m_addingPeak(false),m_resetting(false)
this,SLOT(removePlot(MantidQt::MantidWidgets::PropertyHandler*))); this,SLOT(removePlot(MantidQt::MantidWidgets::PropertyHandler*)));
connect(m_fitPropertyBrowser,SIGNAL(removeFitCurves()),this,SLOT(removeFitCurves())); connect(m_fitPropertyBrowser,SIGNAL(removeFitCurves()),this,SLOT(removeFitCurves()));
// When fit browser destroyed, disable oneself in the parent graph // When fit browser destroyed, disable oneself in the parent graph
connect(m_fitPropertyBrowser, SIGNAL( destroyed() ), graph, SLOT( disableTools() ), connect(m_fitPropertyBrowser, SIGNAL(destroyed()), graph, SLOT(disableTools()));
Qt::QueuedConnection);
//Show the fitPropertyBrowser if it isn't already. //Show the fitPropertyBrowser if it isn't already.
if (showFitPropertyBrowser) m_fitPropertyBrowser->show(); if (showFitPropertyBrowser) m_fitPropertyBrowser->show();
......
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