Skip to content

Commit

Permalink
set default crop border to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonRG committed Aug 23, 2021
1 parent d246964 commit 928c37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effects/Crop.cpp
Expand Up @@ -34,7 +34,7 @@
using namespace openshot;

/// Blank constructor, useful when using Json to load the effect properties
Crop::Crop() : left(0.1), top(0.1), right(0.1), bottom(0.1) {
Crop::Crop() : left(0.0), top(0.0), right(0.0), bottom(0.0) {
// Init effect properties
init_effect_details();
}
Expand Down

0 comments on commit 928c37b

Please sign in to comment.