<table><tr><td style="">kurmikon created this revision.<br />Herald added a project: Plasma.<br />Herald added a subscriber: plasma-devel.<br />kurmikon requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D29422">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>Now kcm fontconfig has <strong>subpixel rendering</strong> and <strong>hintstyle</strong> options depending on <strong>antialiasing</strong>. This means if I disable antialiasing, I can't set the other two options.</p>

<p>As far as I know, subpixel rendering and hintstyle don't depend on antialiasing and fontconfig does not prevent to set them when antialiasing is off. Indeed the previous version of kcm fontconfig had a different behavior, letting the user chose their values whether antialiasing was enabled or not. So I suggest to always enable them.</p>

<p>Then I'd like to get a clarification on DPI value. Reading the code I see that the spinbox accepts values from 24 with stepsize of 24.</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">QtControls.SpinBox {
                    id: dpiSpinBox
                    stepSize: 24
                    editable: true
                    enabled: dpiCheckBox.checked
                    value: kcm.fontsAASettings.dpi !== 0 ? kcm.fontsAASettings.dpi : 96
                    onValueModified: kcm.fontsAASettings.dpi = value
                    // to: need to divide to stepSize
                    to: 1008
                    // lowest vaue here can be == stepSize, that is because 0 means off
                    from: 24
                }</pre></div>

<p>That seems weird to me. First of all, the user don't even know the spinbox accept only values multiple of 24. If it were this way, there should be a message to inform the user. But basing on information reported <a href="https://wiki.archlinux.org/index.php/Font_configuration#Distorted_fonts" class="remarkup-link" target="_blank" rel="noreferrer">here</a>, neither xdpyinfo, xrdb and fontconfig report values multiple of 24.</p>

<p>In example, xorg wrongly assumed that my monitor had 96 as DPI value, but I calculated it properly and the real value is 101 (see <a href="https://wiki.archlinux.org/index.php/Xorg#Display_size_and_DPI" class="remarkup-link" target="_blank" rel="noreferrer">here</a> how to do it). So I expect system settings to accept 101, but since stepsize is 24, it seems I can't set it. The comment in the section of code posted above says to divide by 24, but I can't understand why.</p>

<p>Maybe was this made to format the value before it is passed to the system functions? But this should be done after the user wrote the value.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R119 Plasma Desktop</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D29422">https://phabricator.kde.org/D29422</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>kcms/fonts/package/contents/ui/main.qml</div></div></div><br /><div><strong>To: </strong>kurmikon<br /><strong>Cc: </strong>ngraham, plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, himcesjf, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart<br /></div>