-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
[New utility]Sysinternals ZoomIt #35880
base: main
Are you sure you want to change the base?
Conversation
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.
check-spelling found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
</tkcontrols:SettingsExpander> | ||
<tkcontrols:SettingsCard x:Uid="ZoomIt_Break_TimerOpacity"> | ||
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Path=ViewModel.BreakTimerOpacityIndex, Mode=TwoWay}"> | ||
<ComboBoxItem>10%</ComboBoxItem> |
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.
Do we need localization for this?
IsTabStop="{x:Bind ViewModel.IsEnabledGpoConfigured, Mode=OneWay}" | ||
Severity="Informational" /> | ||
<InfoBar | ||
x:Uid="ZoomIt_SimultaneousStandaloneZoomItWarning" |
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.
Can we show this only if standalone version is really running? The we can severity warning.
|
||
public bool IsEnabledGpoConfigured | ||
{ | ||
get => _enabledStateIsGPOConfigured; |
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.
get => _enabledStateIsGPOConfigured; | |
get => _enabledStateIsGPOConfigured && _isEnabled; |
OutGoingGeneralSettings snd = new OutGoingGeneralSettings(GeneralSettingsConfig); | ||
|
||
SendConfigMSG(snd.ToString()); | ||
OnPropertyChanged(nameof(IsEnabled)); |
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.
OnPropertyChanged(nameof(IsEnabled)); | |
OnPropertyChanged(nameof(IsEnabled)); | |
OnPropertyChanged(nameof(IsEnabledGpoConfigured)); |
This comment has been minimized.
This comment has been minimized.
3935ac9
to
01cd21c
Compare
This comment has been minimized.
This comment has been minimized.
01cd21c
to
cf7dfd5
Compare
This comment has been minimized.
This comment has been minimized.
cf7dfd5
to
fd84ff4
Compare
Summary of the Pull Request
This PR integrates the Sysinternals tool ZoomIt into PowerToys.
Has the PowerToys Settings page with the options allowed from ZoomIt.
Also updates some C++ dependencies.
Still missing/WIP:
PR Checklist