Improve name / title limits.

This commit is contained in:
John Preston 2019-09-27 19:46:27 +03:00
parent 1018745b0b
commit e06bf16980
3 changed files with 9 additions and 4 deletions

View File

@ -46,7 +46,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace { namespace {
constexpr auto kMaxGroupChannelTitle = 255; // See also edit_peer_info_box. constexpr auto kMaxGroupChannelTitle = 128; // See also edit_peer_info_box.
constexpr auto kMaxUserFirstLastName = 64; // See also edit_contact_box.
constexpr auto kMaxChannelDescription = 255; // See also edit_peer_info_box. constexpr auto kMaxChannelDescription = 255; // See also edit_peer_info_box.
constexpr auto kMinUsernameLength = 5; constexpr auto kMinUsernameLength = 5;
@ -1176,8 +1177,8 @@ void EditNameBox::prepare() {
if (_invertOrder) { if (_invertOrder) {
setTabOrder(_last, _first); setTabOrder(_last, _first);
} }
_first->setMaxLength(kMaxGroupChannelTitle); _first->setMaxLength(kMaxUserFirstLastName);
_last->setMaxLength(kMaxGroupChannelTitle); _last->setMaxLength(kMaxUserFirstLastName);
connect(_first, &Ui::InputField::submitted, [=] { submit(); }); connect(_first, &Ui::InputField::submitted, [=] { submit(); });
connect(_last, &Ui::InputField::submitted, [=] { submit(); }); connect(_last, &Ui::InputField::submitted, [=] { submit(); });

View File

@ -25,6 +25,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace { namespace {
constexpr auto kMaxUserFirstLastName = 64; // See also add_contact_box.
QString UserPhone(not_null<UserData*> user) { QString UserPhone(not_null<UserData*> user) {
const auto phone = user->phone(); const auto phone = user->phone();
return phone.isEmpty() return phone.isEmpty()
@ -220,6 +222,8 @@ void Controller::initNameFields(
}; };
QObject::connect(first, &Ui::InputField::submitted, submit); QObject::connect(first, &Ui::InputField::submitted, submit);
QObject::connect(last, &Ui::InputField::submitted, submit); QObject::connect(last, &Ui::InputField::submitted, submit);
first->setMaxLength(kMaxUserFirstLastName);
first->setMaxLength(kMaxUserFirstLastName);
} }
void Controller::setupWarning() { void Controller::setupWarning() {

View File

@ -235,7 +235,7 @@ void ShowEditPermissions(not_null<PeerData*> peer) {
namespace { namespace {
constexpr auto kMaxGroupChannelTitle = 255; // See also add_contact_box. constexpr auto kMaxGroupChannelTitle = 128; // See also add_contact_box.
constexpr auto kMaxChannelDescription = 255; // See also add_contact_box. constexpr auto kMaxChannelDescription = 255; // See also add_contact_box.
class Controller class Controller