2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Moved api peer photo processing to separated file.

Removed MainWidget::deletePhotoLayer.
This commit is contained in:
23rd
2021-10-20 19:54:22 +03:00
parent 36d6682122
commit 159beb138a
15 changed files with 294 additions and 213 deletions

View File

@@ -30,6 +30,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "main/main_session.h"
#include "window/window_session_controller.h"
#include "apiwrap.h"
#include "api/api_peer_photo.h"
#include "core/file_utilities.h"
#include "base/call_delayed.h"
#include "styles/style_layers.h"
@@ -63,7 +64,7 @@ void SetupPhoto(
upload->setFullRadius(true);
upload->addClickHandler([=] {
auto callback = [=](QImage &&image) {
self->session().api().uploadPeerPhoto(self, std::move(image));
self->session().api().peerPhoto().upload(self, std::move(image));
};
Editor::PrepareProfilePhoto(
upload,