From 7609f7fbfef5c691cabe2b1b837ddebbf18b6d6d Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Sat, 3 Mar 2018 18:09:42 -0600 Subject: [PATCH] Fix default values on ColorShift effect --- src/effects/ColorShift.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/ColorShift.cpp b/src/effects/ColorShift.cpp index 28884de5..00300561 100644 --- a/src/effects/ColorShift.cpp +++ b/src/effects/ColorShift.cpp @@ -30,7 +30,7 @@ using namespace openshot; /// Blank constructor, useful when using Json to load the effect properties -ColorShift::ColorShift() : red_x(0.0), red_y(0.0), green_x(0.0), green_y(0.0), blue_x(0.0), blue_y(0.0), alpha_x(0.0), alpha_y(0.0) { +ColorShift::ColorShift() : red_x(-0.05), red_y(0.0), green_x(0.05), green_y(0.0), blue_x(0.0), blue_y(0.0), alpha_x(0.0), alpha_y(0.0) { // Init effect properties init_effect_details(); }