Skip to content
Snippets Groups Projects
Commit a6e8324c authored by Nick Draper's avatar Nick Draper
Browse files

Disable Get Parameters and add release notes

re #22022
parent 77f29b15
No related branches found
No related tags found
No related merge requests found
......@@ -727,11 +727,13 @@ void PeakPickerTool::prepareContextMenu(QMenu &menu) {
menu.addSeparator();
action = new QAction("Get Parameters", this);
connect(action, SIGNAL(triggered()), this, SLOT(getParameters()));
menu.addAction(action);
if (!isMuonMultiFitData()) {
action = new QAction("Get Parameters", this);
connect(action, SIGNAL(triggered()), this, SLOT(getParameters()));
menu.addAction(action);
menu.addSeparator();
menu.addSeparator();
}
if (m_fitPropertyBrowser->isFitEnabled()) {
action = new QAction("Fit", this);
......
......@@ -29,6 +29,7 @@ Interface
- The ALC interface now allows background sections with negative values.
- If data is loaded with 0 good frames into Muon Analysis then it will try to load the data without dead time correction (does not need number of good frames).
- Muon analysis no longer disables the "aco add" and "simultaneous" buttons in the multiple fitting interface.
- We have disabled some non functional graph right click context menu items or adding functions when in multi data fitting mode, in the Data Analysis tab of the Muon Analysis Interface.
Algorithms
----------
......
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