Skip to content
Snippets Groups Projects
Commit b17da2cd authored by Matthias's avatar Matthias
Browse files

fix crash when trying to rotate 1D data (issue #1167)

parent d5b89646
No related branches found
No related tags found
No related merge requests found
...@@ -202,6 +202,9 @@ void RealDataSelectorActions::onRotateDataRequest() ...@@ -202,6 +202,9 @@ void RealDataSelectorActions::onRotateDataRequest()
RealDataItem* dataItem = RealDataItem* dataItem =
dynamic_cast<RealDataItem*>(m_realDataModel->itemForIndex(currentIndex)); dynamic_cast<RealDataItem*>(m_realDataModel->itemForIndex(currentIndex));
ASSERT(dataItem); ASSERT(dataItem);
if (!dataItem->isIntensityData()) // should never happen because of action disabling => no dialog necessary
return;
auto intensityItem = dataItem->intensityDataItem(); auto intensityItem = dataItem->intensityDataItem();
ASSERT(intensityItem); ASSERT(intensityItem);
......
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