Skip to content
Snippets Groups Projects
Commit b57c57e4 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

inline triv fct

parent 17b5834a
No related branches found
No related tags found
1 merge request!2211MaskEditorToolpanel now using DoubleSpinBox (#869...)
...@@ -116,7 +116,7 @@ void MaskEditorToolpanel::setPanelHidden(bool hidden) ...@@ -116,7 +116,7 @@ void MaskEditorToolpanel::setPanelHidden(bool hidden)
} else { } else {
QModelIndexList indexes = selectionModel()->selectedIndexes(); QModelIndexList indexes = selectionModel()->selectedIndexes();
if (!indexes.empty()) if (!indexes.empty())
setCurrentMaskItem(maskItemForIndex(indexes.front())); setCurrentMaskItem(m_maskContainerModel->itemForIndex(indexes.front()));
} }
} }
...@@ -126,7 +126,7 @@ void MaskEditorToolpanel::onSelectionChanged(const QItemSelection& selected, con ...@@ -126,7 +126,7 @@ void MaskEditorToolpanel::onSelectionChanged(const QItemSelection& selected, con
return; return;
if (!selected.empty()) if (!selected.empty())
setCurrentMaskItem(maskItemForIndex(selected.indexes().front())); setCurrentMaskItem(m_maskContainerModel->itemForIndex(selected.indexes().front()));
else else
setCurrentMaskItem(nullptr); setCurrentMaskItem(nullptr);
} }
...@@ -213,8 +213,3 @@ void MaskEditorToolpanel::addMaskCheckBox(const QString& title, std::function<bo ...@@ -213,8 +213,3 @@ void MaskEditorToolpanel::addMaskCheckBox(const QString& title, std::function<bo
m_editor_layout->addRow(checkBox); m_editor_layout->addRow(checkBox);
} }
MaskItem* MaskEditorToolpanel::maskItemForIndex(const QModelIndex& index)
{
return m_maskContainerModel->itemForIndex(index);
}
...@@ -58,9 +58,6 @@ private: ...@@ -58,9 +58,6 @@ private:
void addMaskCheckBox(const QString& title, std::function<bool()> getter, void addMaskCheckBox(const QString& title, std::function<bool()> getter,
std::function<void(bool)> setter); std::function<void(bool)> setter);
//! Returns the mask item for the given index, or nullptr if invalid.
MaskItem* maskItemForIndex(const QModelIndex& index);
//! Creates the UI to edit the current mask's properties //! Creates the UI to edit the current mask's properties
void createMaskEditorUI(); void createMaskEditorUI();
......
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