mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-30 22:16:14 +00:00
some template send improvements
This commit is contained in:
@@ -981,16 +981,16 @@ void MainWidget::updateOnlineDisplay() {
|
||||
if (App::wnd()->settingsWidget()) App::wnd()->settingsWidget()->updateOnlineDisplay();
|
||||
}
|
||||
|
||||
void MainWidget::confirmShareContact(const QString &phone, const QString &fname, const QString &lname) {
|
||||
history.confirmShareContact(phone, fname, lname);
|
||||
void MainWidget::confirmShareContact(bool ctrlShiftEnter, const QString &phone, const QString &fname, const QString &lname) {
|
||||
history.confirmShareContact(ctrlShiftEnter, phone, fname, lname);
|
||||
}
|
||||
|
||||
void MainWidget::confirmSendImage(const ReadyLocalMedia &img) {
|
||||
history.confirmSendImage(img);
|
||||
void MainWidget::confirmSendImage(bool ctrlShiftEnter, const ReadyLocalMedia &img) {
|
||||
history.confirmSendImage(ctrlShiftEnter, img);
|
||||
}
|
||||
|
||||
void MainWidget::confirmSendImageUncompressed() {
|
||||
history.uploadConfirmImageUncompressed();
|
||||
void MainWidget::confirmSendImageUncompressed(bool ctrlShiftEnter) {
|
||||
history.uploadConfirmImageUncompressed(ctrlShiftEnter);
|
||||
}
|
||||
|
||||
void MainWidget::cancelSendImage() {
|
||||
|
Reference in New Issue
Block a user