<div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 2020-11-17 20:22, Prince Gupta wrote:<br>> ---<br>>  modules/gui/qt/widgets/qml/CheckedDelegate.qml | 3 ++-<br>>  1 file changed, 2 insertions(+), 1 deletion(-)<br>><br> > diff --git a/modules/gui/qt/widgets/qml/CheckedDelegate.qml<br>> b/modules/gui/qt/widgets/qml/CheckedDelegate.qml<br>> index 0aaf1f2c17..d41c7db810 100644<br>> --- a/modules/gui/qt/widgets/qml/CheckedDelegate.qml<br>> +++ b/modules/gui/qt/widgets/qml/CheckedDelegate.qml<br>> @@ -27,6 +27,7 @@ T.ItemDelegate {<br>>      id: control<br>><br> >      checkable: true<br>> +    font.pixelSize: VLCStyle.fontSize_large<br>>      leftPadding: VLCStyle.margin_xlarge<br>>      rightPadding: VLCStyle.margin_xsmall<br>><br> > @@ -41,7 +42,7 @@ T.ItemDelegate {<br>>              text: VLCIcons.check<br>>              visible: control.checked<br>>              height: parent.height<br>> -            font.pixelSize: 24<br>> +            font.pixelSize: VLCStyle.dp(24, VLCStyle.scale)<br>would it makes more sens to use a metric like this<br>    VLCIcons.pixelSize(VLCStyle.icon_something)<br>to be more consistent with the other Icons?<br></blockquote><div><br></div><div>idk, none of the currently available 

metric 

seems to give the desired result, </div><div>VLCStyle.icon_medium looks too big while 

VLCStyle.icon_normal too small.</div><div><br></div><div>VLCStyle.icon_normal <a href="https://imgur.com/a/W8OLsr2">https://imgur.com/a/W8OLsr2</a></div><div>VLCStyle.icon_medium <a href="https://imgur.com/a/NHqu58b">https://imgur.com/a/NHqu58b</a></div><div>VLCStyle.dp(24, VLCStyle.scale) (currently used) <a href="https://imgur.com/a/TzNQG3p">https://imgur.com/a/TzNQG3p</a></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">>              color: "white"<br>>              verticalAlignment: Text.AlignVCenter<br>>          }</blockquote></div>