Skip to content
Snippets Groups Projects
Commit f250dc36 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

ENH: Fixed alpha slider (color-setup) not correctly updated when switch from...

ENH: Fixed alpha slider (color-setup) not correctly updated when switch from layer to another layer.
parent 81583fad
No related branches found
No related tags found
No related merge requests found
......@@ -217,6 +217,10 @@ ColorSetupController
// Set current-index of white (gray).
colorSetupWidget->SetCurrentGrayIndex( 0 );
//
// Alpha
colorSetupWidget->SetAlpha( 1.0 );
}
colorSetupWidget->blockSignals( widgetSignalsBlocked );
}
......@@ -230,6 +234,9 @@ ColorSetupController
{
// Reset color-setup widget.
ResetIndices( RGBW_CHANNEL_RGB );
// Reset alpha.
ResetAlpha();
}
/*******************************************************************************/
......@@ -307,6 +314,37 @@ ColorSetupController
this->blockSignals( thisSignalsBlocked );
}
/*******************************************************************************/
void
ColorSetupController
::ResetAlpha()
{
//
// Access color-dynamics widget.
ColorSetupWidget* colorSetupWidget = GetWidget< ColorSetupWidget >();
//
// Access image-model.
VectorImageModel* imageModel = GetModel< VectorImageModel >();
assert( imageModel!=NULL );
// Block this controller's signals to prevent display refreshes
// but let let widget(s) signal their changes so linked values
// will be correctly updated.
bool thisSignalsBlocked = this->blockSignals( true );
{
// Block widget's signals...
//...but force call to valueChanged() slot to force refresh.
bool widgetSignalsBlocked = colorSetupWidget->blockSignals( true );
{
colorSetupWidget->SetAlpha( imageModel->GetSettings().GetAlpha() );
}
colorSetupWidget->blockSignals( widgetSignalsBlocked );
}
this->blockSignals( thisSignalsBlocked );
}
/*******************************************************************************/
/* SLOTS */
/*******************************************************************************/
......
......@@ -157,6 +157,10 @@ private:
*/
void ResetIndices( RgbwChannel channels );
/**
*/
void ResetAlpha();
//
// AbstractModelController overrides.
......
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