Open edit only for the messages that we can edit.

This commit is contained in:
John Preston 2016-04-28 12:07:59 +03:00
parent 9acf437534
commit 724ba9e429
1 changed files with 1 additions and 1 deletions

View File

@ -6920,7 +6920,7 @@ void HistoryWidget::keyPressEvent(QKeyEvent *e) {
}
} else if (e->key() == Qt::Key_Up) {
if (!(e->modifiers() & (Qt::ShiftModifier | Qt::MetaModifier | Qt::ControlModifier))) {
if (_history && _history->lastSentMsg) {
if (_history && _history->lastSentMsg && _history->lastSentMsg->canEdit(::date(unixtime()))) {
if (_field.getLastText().isEmpty() && !_editMsgId && !_replyToId) {
App::contextItem(_history->lastSentMsg);
onEditMessage();