From 0f1e49fba4bb929d1e0a49d9b879751dd31a0ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Tue, 28 Nov 2023 14:00:59 -0300 Subject: [PATCH] Fixed default filter values. --- mrv2/docs/HISTORY.md | 4 +++- mrv2/lib/mrvFl/mrvPreferences.cpp | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md index 91b8836a7..898ce54aa 100644 --- a/mrv2/docs/HISTORY.md +++ b/mrv2/docs/HISTORY.md @@ -1,5 +1,6 @@ v0.9.2 ====== + - Added .otioz to Windows file associations installer and uninstaller. - Fixed Hotkeys not working. - Fixed dead hotkeys Shift 1 to 9 and 0. @@ -20,7 +21,8 @@ v0.9.2 tests Windows and Linux benefit from blitting while macOS benefits from using shaders. - Added OpenGL control for Vsync. Currently it works on Linux and macOS. -- Fixed compilation for Windows WSL2. +- Fixed default value of Minify / Magnify filters from the preferences to + be Linear instead of Nearest. - For programmers using VSCode, added .vscode directory with tasks to: * Build All mrv2 Project with all Dependencies (main compile -- runme.sh) * Build tlRender, FLTK and mrv2 (runmet.sh) diff --git a/mrv2/lib/mrvFl/mrvPreferences.cpp b/mrv2/lib/mrvFl/mrvPreferences.cpp index 14476599c..122cf39cd 100644 --- a/mrv2/lib/mrvFl/mrvPreferences.cpp +++ b/mrv2/lib/mrvFl/mrvPreferences.cpp @@ -380,10 +380,10 @@ namespace mrv view.get("alpha_blend", tmp, 1); uiPrefs->uiPrefsAlphaBlend->value(tmp); - view.get("minify_filter", tmp, 0); + view.get("minify_filter", tmp, 1); uiPrefs->uiPrefsMinifyFilter->value(tmp); - view.get("magnify_filter", tmp, 0); + view.get("magnify_filter", tmp, 1); uiPrefs->uiPrefsMagnifyFilter->value(tmp); view.get("crop_area", tmp, 0);