Text moving to the side when a word is highlighted - "renderer_tweaks__linux" option must be adjusted #5555
Replies: 3 comments
-
Inclustion of 'o' to option default is not nice, it makes rendering slower.
but on Qt5/qt6, 'o' is used in default.
option 'w' is not affecting speed. it's in default only on macOS.
|
Beta Was this translation helpful? Give feedback.
-
Fine, thanks for the explanation. It's up to you to decide, I just shared my results. I think that, from the user's perspective, the rendering issue is more important than some decreasing performance in edge case (at least I still couldn't perceive any decreased performance). The rendering issue might cause new user to think it's a buggy/unfinished software when it's actually excellent. |
Beta Was this translation helpful? Give feedback.
-
The decreased speed of rendering affects how fast we can scroll by arrow-keys... and CPU loading.. |
Beta Was this translation helpful? Give feedback.
-
This is not an issue as it can be fixed by tweaking options. I'm commenting here as a new issue because this repository doesn't have "Discussions" tab enabled for general talk.
I use Highlight Occurrences plugin to highlight other occurrences of the word under the caret. But I noticed the highlighting of the word causes the rest of the line (at the right of the highlighted word) to slightly move to the side (by 1px or 2px).
So I played with every
renderer_tweaks__linux
possible combinations to test if one of them is capable to fix this rendering issue. I found out the key chars of this option for this rendering issue arew
ando
.w
withouto
makes the rendering very bad, the rest of the line after the highlighted word moves one space width to the left (eating the space char after the highlighted word).o
withoutw
has the opposite effect: the rest of the line moves one space width to the right (rendering an extra space char after the highlighted word) .ow
the rendering is perfect, nothing moves when a word is highlighted.o
orw
produces my initial report: the highlighting of a word cause the rest of the line to slightly move to the side (by 1 or 2px).In the end, my final value for this option is
nosw
, but as I said the letters affecting this rendering issue areo
andw
.I can't test on other systems, I'm just sharing my results here because maybe using both
o
andw
should be the default on Linux as at least for me it produces the perfect rendering.Since this is just talk, you can close this at any time.
Beta Was this translation helpful? Give feedback.
All reactions