diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md index 0f5e0c712..4502ab29e 100644 --- a/mrv2/docs/HISTORY.md +++ b/mrv2/docs/HISTORY.md @@ -21,6 +21,8 @@ v1.0.6 - Fixed macOS VideoToolbox's hardware encoding not working when busy. - Fixed Windows' presets not being read due to spaces in the installed directory. +- Fixed a long standing bug of gamma (when changed in the top bar slider) + not being reapplied when changing from one clip to another. v1.0.5 diff --git a/mrv2/lib/mrvApp/mrvMainControl.cpp b/mrv2/lib/mrvApp/mrvMainControl.cpp index 93ba4a003..6d07b589d 100644 --- a/mrv2/lib/mrvApp/mrvMainControl.cpp +++ b/mrv2/lib/mrvApp/mrvMainControl.cpp @@ -350,6 +350,7 @@ namespace mrv view->setStereo3DOptions(p.stereo3DOptions); view->setTimelinePlayers(p.timelinePlayers); view->updatePlaybackButtons(); + view->updateDisplayOptions(); view->redraw(); p.ui->uiTimeline->setOCIOOptions(p.ocioOptions); @@ -395,6 +396,7 @@ namespace mrv view->setCompareOptions(p.compareOptions); view->setStereo3DOptions(p.stereo3DOptions); view->setTimelinePlayers(p.timelinePlayers); + view->updateDisplayOptions(); view->redraw(); }