1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: colour scheme presets and aesthetic stuff.

This commit is contained in:
jules 2012-07-14 10:30:56 +01:00
parent b1d73f2086
commit 1b2b1a1aac
16 changed files with 129 additions and 340 deletions

View file

@ -126,15 +126,7 @@ void SourceCodeEditor::setEditor (CodeEditorComponent* newEditor)
{
addAndMakeVisible (editor = newEditor);
#if JUCE_MAC
Font font (13.0f);
font.setTypefaceName ("Menlo");
#else
Font font (12.0f);
font.setTypefaceName (Font::getDefaultMonospacedFontName());
#endif
editor->setFont (font);
editor->setFont (AppearanceSettings::getDefaultCodeFont());
editor->setTabSize (4, true);
updateColourScheme();