mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
[Settings] Fix VCM page converters (#12459)
Convert the uses of ModuleEnabledToForegroundConverter to ModuleEnabledToOpacityConverter in line with the rest of the settings pages.
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
<TextBlock x:Uid="VideoConference_Shortcuts"
|
<TextBlock x:Uid="VideoConference_Shortcuts"
|
||||||
Style="{StaticResource SettingsGroupTitleStyle}"
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}" />
|
Opacity="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}" />
|
||||||
|
|
||||||
<controls:HotkeySettingsControl
|
<controls:HotkeySettingsControl
|
||||||
x:Uid="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header"
|
x:Uid="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header"
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
/>
|
/>
|
||||||
<TextBlock x:Uid="VideoConference_Microphone"
|
<TextBlock x:Uid="VideoConference_Microphone"
|
||||||
Style="{StaticResource SettingsGroupTitleStyle}"
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
Opacity="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
||||||
|
|
||||||
<ComboBox x:Uid="VideoConference_SelectedMicrophone"
|
<ComboBox x:Uid="VideoConference_SelectedMicrophone"
|
||||||
Width="240"
|
Width="240"
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
|
|
||||||
<TextBlock x:Uid="VideoConference_Camera"
|
<TextBlock x:Uid="VideoConference_Camera"
|
||||||
Style="{StaticResource SettingsGroupTitleStyle}"
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
Opacity="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
||||||
|
|
||||||
<ComboBox x:Uid="VideoConference_SelectedCamera"
|
<ComboBox x:Uid="VideoConference_SelectedCamera"
|
||||||
Width="240"
|
Width="240"
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
|
|
||||||
<TextBlock x:Uid="VideoConference_Toolbar"
|
<TextBlock x:Uid="VideoConference_Toolbar"
|
||||||
Style="{StaticResource SettingsGroupTitleStyle}"
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
||||||
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
Opacity="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
||||||
|
|
||||||
<ComboBox x:Uid="VideoConference_ToolbarPosition"
|
<ComboBox x:Uid="VideoConference_ToolbarPosition"
|
||||||
MinWidth="240"
|
MinWidth="240"
|
||||||
|
|||||||
Reference in New Issue
Block a user