fredizzimo

Results 1393 comments of fredizzimo

Actually, I do see a problem, I’m not sure why it hasn’t been noticed before though https://github.com/neovide/neovide/blob/af9869bd6d8d3434b187e29f85032ee74e40b536/src/renderer/fonts/caching_shaper.rs#L170-L173 The debug statements should be moved down to after `FontLoader::new`, and there should...

@rawlingsr. I don’t think those are regressions, previously any failures in the fallback fonts have just been silentlyignored, which has caused a lot of unneccessary issues opened here. The same...

@borisfaure, considering that my suggested fix did not work, and that you had to divide by the scale factor, i wonder if the scale factor is the actual issue for...

@borisfaure, did the `WINIT_X11_SCALE_FACTOR` solve your issue? I created this PR https://github.com/neovide/neovide/pull/2308, with the correct fix for the issue I reported, but it probably won't help for you. It turned...

@borisfaure, could you take a screenshot, so I can see what you mean? If it shows up in the screenshot.

The font sizes should now be the same as most other applications. A fix where the config file font size was taking pixels instead of points was also fixed. And...

If you are on X11, winit will set a strange scale factor for you, which affects the font size. * https://github.com/rust-windowing/winit/issues/2231 But you can override it with the environment variable...

There's also a faq entry for this, but I think it needs to be slightly rewritten, to provide the actual solution instead of linking to an issue comment. https://neovide.dev/faq.html#font-size-is-weird-with-high-dpi-display-on-x11

I'm leaving this open and assigned the documentation label, since I think we need to update the FAQ entry. I also think we need to make the FAQ itself more...

I think this is the same issue as: * https://github.com/neovide/neovide/issues/1947 But to be sure, could you set `:set inccommand=nosplit` and see if the issue disappears? If not, then we need...