Allow long support user information.

This commit is contained in:
John Preston 2018-11-21 10:43:35 +04:00
parent 905376de1d
commit bf9069524a
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ namespace {
constexpr auto kOccupyFor = TimeId(60); constexpr auto kOccupyFor = TimeId(60);
constexpr auto kReoccupyEach = 30 * TimeMs(1000); constexpr auto kReoccupyEach = 30 * TimeMs(1000);
constexpr auto kMaxSupportInfoLength = MaxMessageSize * 4;
class EditInfoBox : public BoxContent { class EditInfoBox : public BoxContent {
public: public:
@ -57,7 +58,7 @@ EditInfoBox::EditInfoBox(
[] { return QString("Support information"); }, [] { return QString("Support information"); },
text) text)
, _submit(std::move(submit)) { , _submit(std::move(submit)) {
_field->setMaxLength(Global::CaptionLengthMax()); _field->setMaxLength(kMaxSupportInfoLength);
_field->setSubmitSettings(Ui::InputField::SubmitSettings::Both); _field->setSubmitSettings(Ui::InputField::SubmitSettings::Both);
_field->setInstantReplaces(Ui::InstantReplaces::Default()); _field->setInstantReplaces(Ui::InstantReplaces::Default());
_field->setInstantReplacesEnabled(Global::ReplaceEmojiValue()); _field->setInstantReplacesEnabled(Global::ReplaceEmojiValue());