Render "intense" text as bright by default (#10958)

From discussion at #10678, we will ship with "intense" as bright for now until we fix text getting cut off by some bold fonts.
This commit is contained in:
PankajBhojwani 2021-08-16 12:59:37 -07:00 committed by GitHub
parent a544f56e17
commit 59f184aa2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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",

View File

@ -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;