Skip to content

Commit 1fb945c

Browse files
committed
ColorShift effect: Don't init with random values
1 parent 3d6958d commit 1fb945c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/effects/ColorShift.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
using namespace openshot;
3434

3535
/// Blank constructor, useful when using Json to load the effect properties
36-
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) {
36+
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) {
3737
// Init effect properties
3838
init_effect_details();
3939
}

0 commit comments

Comments
 (0)