Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/containers/MessageBox/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ import { sanitizeLikeString } from '../../lib/database/utils';
const imagePickerConfig = {
cropping: true,
compressImageQuality: 0.8,
avoidEmptySpaceAroundImage: false
avoidEmptySpaceAroundImage: false,
freeStyleCropEnabled: true
};

const libraryPickerConfig = {
Expand Down
1 change: 1 addition & 0 deletions app/views/ProfileView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ class ProfileView extends React.Component {
const options = {
cropping: true,
compressImageQuality: 0.8,
freeStyleCropEnabled: true,
cropperAvoidEmptySpaceAroundImage: false,
cropperChooseText: I18n.t('Choose'),
cropperCancelText: I18n.t('Cancel'),
Expand Down