From 96db9112b136d3897cafe36070b1949dbda42242 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 23 Jun 2026 12:55:59 +0400 Subject: [PATCH] Use attention style for Decline All confirm button --- .../SourceFiles/boxes/peers/community_pending_requests_box.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/boxes/peers/community_pending_requests_box.cpp b/Telegram/SourceFiles/boxes/peers/community_pending_requests_box.cpp index 4a82c7d0d9..f55248f19b 100644 --- a/Telegram/SourceFiles/boxes/peers/community_pending_requests_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/community_pending_requests_box.cpp @@ -970,6 +970,9 @@ void ShowCommunityPendingRequestsBox( .confirmText = (reject ? tr::lng_community_request_decline() : tr::lng_community_request_add()), + .confirmStyle = (reject + ? &st::attentionBoxButton + : nullptr), .title = (reject ? tr::lng_community_requests_decline_all_title() : tr::lng_community_requests_add_all_title()),