Macbook Retina Font Size

Hi. I’m starting with Defold and I’m a Macbook user with a Retina display. When I opened the IDE, I saw that I can increase the font size in the code editor, but I can’t find how to do it in the other panes. Is it possible? Or is it only possible in the code editor?

Thanks a lot!

You can via CSS file. Check this:

Add this to the file for example and restart the editor.

.root {
    -fx-font-size: 16px;
}

P.S.

After the first restart you can use the “reload” menu to update the editor if you do any changes to the CSS file.

4 Likes

Are there any future plans to allow editing these types of values directly from the IDE?

There is one such feature request on GitHub: Add UI-Resize Functionality to the Editor · Issue #9404 · defold/defold · GitHub

It is likely something we need to look into this year to make the editor more accessible.

2 Likes