where can I change the fontsize for the Insert-shortcuts (Format-Menu).
When I have something to insert it works fine, but when theres nothing the font is changed.
Any hints?
Valentin
Am 23.06.2008 um 10:06 schrieb Stephen Lumenta:
You could edit your startup.rtf file (~/Application Support/SuperCollider/startup.rtf) .
Mine looks like this:
// m-audio
Server.default.options.device = "FireWire 410 Multichannel";
// post win font
Document.listener.font_(Font("Andale Mono", 10));
Document.listener.background_(Color.new255(190,190,190));
// use the default font on the help files
Document.initAction_({
|doc|
if(doc.path.notNil,
{if("html".matchRegexp(doc.path),
{},
{doc.font_(Font("Andale Mono", 12))}
)},
{doc.font_(Font("Andale Mono", 12))}
);
});
Stephen
Am 23.06.2008 um 06:44 schrieb Batuhan Bozkurt: