←back to thread

677 points meetpateltech | 1 comments | | HN request time: 1.105s | source
Show context
extr ◴[] No.45117263[source]
Zed is so great, I do wish they would focus just a little bit more on bringing the UI just a bit more up to parity with VS Code, I would switch full time.
replies(3): >>45117325 #>>45117438 #>>45118430 #
sirodoht ◴[] No.45117325[source]
What do you feel is missing from the UI?
replies(8): >>45117370 #>>45117454 #>>45117649 #>>45117711 #>>45117750 #>>45118013 #>>45118359 #>>45118829 #
sapiogram ◴[] No.45117454[source]
Their font rendering looks awful on non-high dpi displays, and the devs don't seem to care at all. https://github.com/zed-industries/zed/issues/7992
replies(6): >>45117670 #>>45117671 #>>45118505 #>>45118602 #>>45118711 #>>45119498 #
delta_p_delta_x ◴[] No.45117671[source]
My guess: their shaders or text rendering don't account for sub-pixel anti-aliasing, which is critical to getting decent text rendering on low pixel density displays.

If they'd used Skia (which is what Electron and Chromium use), they would've got this for free. Instead they tried to reinvent the world and didn't realise how big the world was.

replies(2): >>45118939 #>>45119837 #
AlexandrB ◴[] No.45118939[source]
I love how we just reinvent the wheel again, and again, and again, and again...

MacOS native apps have had great sub-pixel rendering all along, but I guess since we have to develop everything in Electron now it's time to reimplement all the exiting functionality.

replies(2): >>45118979 #>>45119423 #
1. c-hendricks ◴[] No.45119423[source]
- As mentioned, macOS removed subpixel anti aliasing a while ago

- Zed is not an electron app

- In the linked issue you can see that this issue does not exist in Electron.