Skip to content

Commit

Permalink
Render "intense" text as bright by default (#10958)
Browse files Browse the repository at this point in the history
From discussion at #10678, we will ship with "intense" as bright for now until we fix text getting cut off by some bold fonts.
  • Loading branch information
PankajBhojwani authored Aug 16, 2021
1 parent a544f56 commit 59f184a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/cascadia/profiles.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
"type": "string"
},
"intenseTextStyle": {
"default": "all",
"default": "bright",
"description": "Controls how 'intense' text is rendered. Values are \"bold\", \"bright\", \"all\" and \"none\"",
"enum": [
"none",
Expand Down
2 changes: 1 addition & 1 deletion src/cascadia/TerminalSettingsModel/AppearanceConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation

INHERITABLE_SETTING(Model::IAppearanceConfig, bool, RetroTerminalEffect, false);
INHERITABLE_SETTING(Model::IAppearanceConfig, hstring, PixelShaderPath, L"");
INHERITABLE_SETTING(Model::IAppearanceConfig, Model::IntenseStyle, IntenseTextStyle, Model::IntenseStyle::All);
INHERITABLE_SETTING(Model::IAppearanceConfig, Model::IntenseStyle, IntenseTextStyle, Model::IntenseStyle::Bright);

private:
winrt::weak_ref<Profile> _sourceProfile;
Expand Down

0 comments on commit 59f184a

Please sign in to comment.