mirror of https://github.com/procxx/kepka.git
parent
d8e55081b0
commit
cc463b07b1
|
@ -42,22 +42,24 @@ namespace {
|
||||||
.durationMs = Ui::Toast::kDefaultDuration * 2,
|
.durationMs = Ui::Toast::kDefaultDuration * 2,
|
||||||
.multiline = true,
|
.multiline = true,
|
||||||
};
|
};
|
||||||
auto link = Ui::Text::Link(
|
if (history->peer->canWrite()) {
|
||||||
tr::lng_about_random_send(tr::now).toUpper());
|
auto link = Ui::Text::Link(
|
||||||
link.entities.push_back(
|
tr::lng_about_random_send(tr::now).toUpper());
|
||||||
EntityInText(EntityType::Bold, 0, link.text.size()));
|
link.entities.push_back(
|
||||||
config.text.append(' ').append(std::move(link));
|
EntityInText(EntityType::Bold, 0, link.text.size()));
|
||||||
config.filter = crl::guard(&history->session(), [=](
|
config.text.append(' ').append(std::move(link));
|
||||||
const ClickHandlerPtr &handler,
|
config.filter = crl::guard(&history->session(), [=](
|
||||||
Qt::MouseButton button) {
|
const ClickHandlerPtr &handler,
|
||||||
if (button == Qt::LeftButton) {
|
Qt::MouseButton button) {
|
||||||
auto message = Api::MessageToSend(history);
|
if (button == Qt::LeftButton) {
|
||||||
message.action.clearDraft = false;
|
auto message = Api::MessageToSend(history);
|
||||||
message.textWithTags.text = emoji;
|
message.action.clearDraft = false;
|
||||||
Api::SendDice(message);
|
message.textWithTags.text = emoji;
|
||||||
}
|
Api::SendDice(message);
|
||||||
return false;
|
}
|
||||||
});
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
Ui::Toast::Show(config);
|
Ui::Toast::Show(config);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue