From d4c1da0b2e31efa1c5c921660eab7b70f22fe33b Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Mon, 19 Apr 2021 00:30:04 +0300 Subject: [PATCH] Use smaller font for radio box descriptions --- Telegram/SourceFiles/kotato/customboxes/radio_box.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/kotato/customboxes/radio_box.cpp b/Telegram/SourceFiles/kotato/customboxes/radio_box.cpp index 9b03b7f58..8a6a54044 100644 --- a/Telegram/SourceFiles/kotato/customboxes/radio_box.cpp +++ b/Telegram/SourceFiles/kotato/customboxes/radio_box.cpp @@ -101,10 +101,10 @@ void RadioBox::prepare() { if (!_description.isEmpty()) { content->add( - object_ptr(this, _description, st::boxLabel), + object_ptr(this, _description, st::boxDividerLabel), style::margins( st::boxPadding.left(), - st::boxPadding.bottom(), + 0, st::boxPadding.right(), st::boxPadding.bottom())); }