Show/hide contrast mask, still wrong icon on button

This commit is contained in:
heckflosse
2018-06-13 13:02:10 +02:00
parent 44729edf04
commit 1b094a084a
6 changed files with 22 additions and 0 deletions

View File

@@ -656,6 +656,16 @@ void ToolPanelCoordinator::spotWBselected (int x, int y, Thumbnail* thm)
}
}
void ToolPanelCoordinator::sharpMaskSelected(bool sharpMask)
{
if (!ipc) {
return;
}
ipc->beginUpdateParams ();
ipc->setSharpMask(sharpMask);
ipc->endUpdateParams (rtengine::EvShrEnabled);
}