mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
[MouseHighlighter]Remove lower limit of fade delay and duration (#29352)
* Removed limit for MouseHighlighter Animation Duration and Animation Delay. (If user sets these values to 0ms, it will actually be set to 1ms to avoid crashing the app) * Update MouseHighlighter.cpp Removed the hack ;D * Update MouseHighlighter.cpp * Update MouseUtilsPage.xaml Changed the values to 1 * Update MouseHighlighter.cpp Reintroducing workaround * Update MouseUtilsPage.xaml Changed the minimum values for FadeDelayMs and FadeDuration back to 0.
This commit is contained in:
committed by
GitHub
parent
547467e45e
commit
8eb48676f2
@@ -196,7 +196,7 @@
|
||||
<NumberBox
|
||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||
LargeChange="100"
|
||||
Minimum="100"
|
||||
Minimum="0"
|
||||
SmallChange="10"
|
||||
SpinButtonPlacementMode="Compact"
|
||||
Value="{x:Bind Mode=TwoWay, Path=ViewModel.MouseHighlighterFadeDelayMs}" />
|
||||
@@ -205,7 +205,7 @@
|
||||
<NumberBox
|
||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||
LargeChange="100"
|
||||
Minimum="100"
|
||||
Minimum="0"
|
||||
SmallChange="10"
|
||||
SpinButtonPlacementMode="Compact"
|
||||
Value="{x:Bind Mode=TwoWay, Path=ViewModel.MouseHighlighterFadeDurationMs}" />
|
||||
|
||||
Reference in New Issue
Block a user