Skip to content

Commit

Permalink
Merge pull request #718 from OpenShot/default-crop-border-of-zero
Browse files Browse the repository at this point in the history
Default crop border of zero
  • Loading branch information
JacksonRG authored Aug 26, 2021
2 parents fc05893 + 928c37b commit d58febf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/effects/Crop.cpp
Original file line number Diff line number Diff line change
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 d58febf

Please sign in to comment.