Skip to content

Commit

Permalink
Fix default backgroundImageStretch to be uniformToFill (#8280)
Browse files Browse the repository at this point in the history
This commit fixes the default value to comply with documentation.

Closes #8256
  • Loading branch information
Don-Vito authored Nov 16, 2020
1 parent a8f3f58 commit 77a204b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalSettingsModel/Profile.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation

GETSET_SETTING(hstring, BackgroundImagePath);
GETSET_SETTING(double, BackgroundImageOpacity, 1.0);
GETSET_SETTING(Windows::UI::Xaml::Media::Stretch, BackgroundImageStretchMode, Windows::UI::Xaml::Media::Stretch::Fill);
GETSET_SETTING(Windows::UI::Xaml::Media::Stretch, BackgroundImageStretchMode, Windows::UI::Xaml::Media::Stretch::UniformToFill);

GETSET_SETTING(Microsoft::Terminal::TerminalControl::TextAntialiasingMode, AntialiasingMode, Microsoft::Terminal::TerminalControl::TextAntialiasingMode::Grayscale);
GETSET_SETTING(bool, RetroTerminalEffect, false);
Expand Down

0 comments on commit 77a204b

Please sign in to comment.