Merge pull request #936 from Flow-Launcher/browserWindowText

Use Dynamic resource for NewTab & NewWindow
This commit is contained in:
DB P 2021-12-31 13:00:36 +09:00 committed by GitHub
commit b70d198dd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,8 +195,10 @@
HorizontalAlignment="Left" HorizontalAlignment="Left"
VerticalAlignment="Center" VerticalAlignment="Center"
Orientation="Horizontal"> Orientation="Horizontal">
<RadioButton IsChecked="{Binding OpenInTab}">New Tab</RadioButton> <RadioButton IsChecked="{Binding OpenInTab}"
<RadioButton IsChecked="{Binding OpenInNewWindow, Mode=OneTime}">New Window</RadioButton> Content="{DynamicResource defaultBrowser_newWindow}"></RadioButton>
<RadioButton IsChecked="{Binding OpenInNewWindow, Mode=OneTime}"
Content="{DynamicResource defaultBrowser_newWindow}"></RadioButton>
</StackPanel> </StackPanel>
<TextBlock <TextBlock
Grid.Row="3" Grid.Row="3"