-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a progress ring indicator to the tab header #8133
Changes from 26 commits
af9e4d5
606490f
0decbea
4e6f6fe
da83748
3d0ed84
f08c962
5f83dfd
ab99ed5
4125052
a900678
0aa5667
e69d0af
57d8e07
0f54cf9
a7e7186
c262d83
31a4143
093d78b
5dfde59
435f44f
705c07c
6a9998f
ce4c015
cc758af
c74a9ee
bb0e4a0
c8f301b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation | |
GETSET_SETTING(bool, AlwaysOnTop, false); | ||
GETSET_SETTING(Model::TabSwitcherMode, TabSwitcherMode, Model::TabSwitcherMode::InOrder); | ||
GETSET_SETTING(bool, DisableAnimations, false); | ||
GETSET_SETTING(bool, DisableProgressRing, false); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. quick check on: why is this a setting? is it too specific? should we have an enum for progressIndicatorStyle? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's... a fair point. Given that browsers/Visual Studio/other things that have progress indicators do not offer a way to disable them (as far as I know), I'm thinking we remove the setting. Thoughts? |
||
|
||
private: | ||
guid _defaultProfile; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: we could probably cache
tab->GetActiveTerminalControl()
in a local somewhere at the top of this lambda