Fixed bug with Blur and Noise for noise

This commit is contained in:
U-PC-BUREAU\jacques
2018-11-07 14:46:55 +01:00
parent b3e6e75bf7
commit 9cc65909e9
2 changed files with 21 additions and 4 deletions

View File

@@ -1812,6 +1812,12 @@ void Locallab::blurMethodChanged()
sensibn->hide();
}
if (blurMethod->get_active_row_number() == 2) {
strength->hide();
} else {
strength->show();
}
if (getEnabled() && expblur->getEnabled()) {
if (listener) {
listener->panelChanged(EvlocallabblurMethod, blurMethod->get_active_text());
@@ -3122,6 +3128,12 @@ void Locallab::updateSpecificGUIState()
sensibn->hide();
}
if (blurMethod->get_active_row_number() == 2) {
strength->hide();
} else {
strength->show();
}
// Update Retinex GUI according to inversret button state (to be compliant with inversretChanged function)
if (inversret->get_active()) {
sensih->hide();