We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49ffe0 commit 8f00f8aCopy full SHA for 8f00f8a
src/note_editor/delegates/AddResourceDelegate.cpp
@@ -742,8 +742,8 @@ bool AddResourceDelegate::checkResourceDataSize(
742
ErrorString error(QT_TR_NOOP(
743
"Can't add attachment: the addition of the resource :"
744
"would violate the max resource size which is"));
745
- error.details() =
746
- utility::humanReadableSize(static_cast<quint64>(*limits.noteSizeMax()));
+ error.details() = utility::humanReadableSize(
+ static_cast<quint64>(*limits.noteSizeMax()));
747
Q_EMIT notifyError(error);
748
return false;
749
}
0 commit comments