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

(cherry picked from commit 77a204b)
  • Loading branch information
Don-Vito authored and DHowett committed Nov 20, 2020
1 parent 689be38 commit c2bc927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalApp/Profile.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace winrt::TerminalApp::implementation

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

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

0 comments on commit c2bc927

Please sign in to comment.