Hi Asaf. Unfortunately, there is currently no existing functionality in JSystem that can help in setting the font size. If you want to get your hands dirty and dive into JSystem code, this can be easily achieved. for example, if you want to change the font size of the right side pane, adding the following code snippet to the TestTreeController constructor method will do the trick: final Font originalFont = testBrowser.getTree().getFont(); final Font biggerFont = originalFont.deriveFont(16f); testBrowser.getTree().setFont(biggerFont);...