Skip to content

Commit

Permalink
Made CTRL + r reset saturation too.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Sep 9, 2024
1 parent 8cbd17b commit 8bada09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/docs/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ v1.2.7
- Added Selection of Page Size when saving out a PDF.
- Updated FAQ to cover X11 settings and FFmpeg Color Accuracy as a cause of
slowness when playing YUV420P_U8 movies.
- Updated FAQ to cover X11 tearing due to bad graphics card configuration.
- Fixed session files with no panels open, leaving the dock group open if it
was previously open.
- Fixed HDR->Auto Normalize with OpenEXR files that had a smaller display
Expand All @@ -13,6 +14,7 @@ v1.2.7
that use commas.
- Fixed numeric locale for Hindi.
- Fixed numeric locale for all languages.
- Made CTRL + r (Reset Colors) reset also saturation changes.


v1.2.6
Expand Down
2 changes: 2 additions & 0 deletions src/lib/mrvGL/mrvTimelineViewportEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1183,8 +1183,10 @@ namespace mrv
{
p.ui->uiGamma->value(1.0);
p.ui->uiGain->value(1.0);
p.ui->uiSaturation->value(1.0);
p.ui->uiGammaInput->value(1.0);
p.ui->uiGainInput->value(1.0);
p.ui->uiSaturationInput->value(1.0);
updateDisplayOptions();
_refresh();
return 1;
Expand Down

0 comments on commit 8bada09

Please sign in to comment.