mirror of https://github.com/procxx/kepka.git
Hide Share contact button in saved messages.
This commit is contained in:
parent
775cede16f
commit
d77afef8b0
|
@ -263,10 +263,10 @@ void Filler::addBlockUser(not_null<UserData*> user) {
|
|||
void Filler::addUserActions(not_null<UserData*> user) {
|
||||
if (_source != PeerMenuSource::ChatsList) {
|
||||
if (user->isContact()) {
|
||||
_addAction(
|
||||
lang(lng_info_share_contact),
|
||||
[user] { PeerMenuShareContactBox(user); });
|
||||
if (!user->isSelf()) {
|
||||
_addAction(
|
||||
lang(lng_info_share_contact),
|
||||
[user] { PeerMenuShareContactBox(user); });
|
||||
_addAction(
|
||||
lang(lng_info_edit_contact),
|
||||
[user] { Ui::show(Box<AddContactBox>(user)); });
|
||||
|
|
Loading…
Reference in New Issue