From 1f38ab1690ffa0edc2ba63c84c26cfc36c7cf455 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 1 Mar 2022 17:01:08 +0300 Subject: [PATCH] Make local storage clear buttons non-uppercase. --- Telegram/SourceFiles/boxes/local_storage_box.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/boxes/local_storage_box.cpp b/Telegram/SourceFiles/boxes/local_storage_box.cpp index b70e9c3b6..ffe882ef7 100644 --- a/Telegram/SourceFiles/boxes/local_storage_box.cpp +++ b/Telegram/SourceFiles/boxes/local_storage_box.cpp @@ -167,6 +167,7 @@ LocalStorageBox::Row::Row( sizeText(data), st::localStorageRowSize) , _clear(this, std::move(clear), st::localStorageClear) { + _clear->setTextTransform(RoundButton::TextTransform::NoTransform); _clear->setVisible(data.count != 0); }