Skip to content

Commit bc6c9fd

Browse files
authored
Merge pull request #443 from ferdnyc/colorshift-init
ColorShift effect: Don't init with random values
2 parents 689f1e1 + 1fb945c commit bc6c9fd

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)