add a clarifying comment about threading/GUI for normalization

This commit is contained in:
Paul Davis 2016-02-22 10:16:04 -05:00
parent 60055a0d6a
commit 031286f1a1

View File

@ -95,6 +95,10 @@ NormalizeDialog::target () const
void
NormalizeDialog::update_progress_gui (float p)
{
/* Normalization is run inside the GUI thread, so we can directly
* update the progress bar when notified about progress.
*/
_progress_bar->set_fraction (p);
}