mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-15 21:57:10 +02:00
fix: add β note to anti-recall and disable by default
This commit is contained in:
parent
c9fa0166e6
commit
d6457ebcc7
2 changed files with 5 additions and 2 deletions
|
@ -48,7 +48,7 @@ public:
|
|||
useScheduledMessages = false;
|
||||
|
||||
// ~ Message edits & deletion history
|
||||
saveDeletedMessages = true;
|
||||
saveDeletedMessages = false;
|
||||
saveMessagesHistory = true;
|
||||
|
||||
// ~ QoL toggles
|
||||
|
|
|
@ -551,7 +551,10 @@ void Ayu::SetupSpyEssentials(not_null<Ui::VerticalLayout *> container)
|
|||
|
||||
AddButtonWithIcon(
|
||||
container,
|
||||
tr::ayu_SaveDeletedMessages(),
|
||||
tr::ayu_SaveDeletedMessages() | rpl::map([=](QString val)
|
||||
{
|
||||
return val + " β";
|
||||
}),
|
||||
st::settingsButtonNoIcon
|
||||
)->toggleOn(
|
||||
rpl::single(settings->saveDeletedMessages)
|
||||
|
|
Loading…
Add table
Reference in a new issue