Drop down scrollbar width

from javax.swing import UIManager UIManager.put("ScrollBar.width", 60) UIManager.put("ScrollBar.height", 20)

This will set the size for all scrollbars in the client. I’ve used it in client startup scripts for touchscreen applications. However, I don’t know if there is a way to do it for a single dropdown component.

Dan