mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Remove useless capture
This commit is contained in:
parent
4a6e62d1ee
commit
1d80f5d0b4
1 changed files with 10 additions and 11 deletions
|
@ -396,18 +396,17 @@ TimelineViewManager::openImageOverlayInternal(QString eventId, QImage img)
|
||||||
imgDialog->showFullScreen();
|
imgDialog->showFullScreen();
|
||||||
|
|
||||||
auto room = rooms_->currentRoom();
|
auto room = rooms_->currentRoom();
|
||||||
connect(
|
connect(imgDialog, &dialogs::ImageOverlay::saving, room, [eventId, imgDialog, room]() {
|
||||||
imgDialog, &dialogs::ImageOverlay::saving, room, [this, eventId, imgDialog, room]() {
|
// hide the overlay while presenting the save dialog for better
|
||||||
// hide the overlay while presenting the save dialog for better
|
// cross platform support.
|
||||||
// cross platform support.
|
imgDialog->hide();
|
||||||
imgDialog->hide();
|
|
||||||
|
|
||||||
if (!room->saveMedia(eventId)) {
|
if (!room->saveMedia(eventId)) {
|
||||||
imgDialog->show();
|
imgDialog->show();
|
||||||
} else {
|
} else {
|
||||||
imgDialog->close();
|
imgDialog->close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue