I've recently upgraded to Komodo Edit 7 from 6.1, and while the upgrade has been rather smooth, the font size for the autocomplete suggestion's font size suddenly became huge
Is there any way to change this?
Found the answer on Komodo Edit forums: http://community.activestate.com/node/7289
To fix this, you need to create (if you haven't done so already) a userChrome.css
file in the <application data folder>/XRE/chrome
(app data location for different operating systems) folder to override the original styling of the autocomplete menu. Copy the code below into the file and save, then restart Komodo and the menu font size should return to normal.
scintilla > panel[anonid="autocompletepopup"] .ko-autocomplete-item {
font-size: 100% !important;
}