mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Don't allow replying to local messages.
This commit is contained in:
parent
096ddcad6d
commit
5fee0a7a73
1 changed files with 1 additions and 1 deletions
|
@ -2380,7 +2380,7 @@ void HistoryInner::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
||||||
};
|
};
|
||||||
|
|
||||||
const auto addReplyAction = [&](HistoryItem *item) {
|
const auto addReplyAction = [&](HistoryItem *item) {
|
||||||
if (!item) {
|
if (!item || !item->isRegular()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const auto canSendReply = [&] {
|
const auto canSendReply = [&] {
|
||||||
|
|
Loading…
Add table
Reference in a new issue