2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

When reporting peer allow to select messages first.

This commit is contained in:
John Preston
2021-02-15 21:37:22 +04:00
parent 45dcadfff4
commit 467449ac13
25 changed files with 639 additions and 372 deletions

View File

@@ -20,6 +20,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/widgets/labels.h"
#include "ui/widgets/buttons.h"
#include "ui/widgets/box_content_divider.h"
#include "ui/boxes/report_box.h"
#include "ui/layers/generic_box.h"
#include "ui/toast/toast.h"
#include "ui/text/text_utilities.h" // Ui::Text::ToUpper
@@ -29,7 +30,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "boxes/peer_list_box.h"
#include "boxes/peer_list_controllers.h"
#include "boxes/add_contact_box.h"
#include "boxes/report_box.h"
#include "boxes/peers/edit_contact_box.h"
#include "lang/lang_keys.h"
#include "info/info_controller.h"
@@ -586,11 +586,14 @@ void ActionsFiller::addBotCommandActions(not_null<UserData*> user) {
void ActionsFiller::addReportAction() {
const auto peer = _peer;
const auto report = [=] {
};
AddActionButton(
_wrap,
tr::lng_profile_report(),
rpl::single(true),
[=] { Ui::show(Box<ReportBox>(peer)); },
report,
st::infoBlockButton);
}