Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"

Check warning on line 6 in Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`ikw` is not a recognized word (unrecognized-spelling)
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
Expand Down Expand Up @@ -52,7 +52,7 @@
Grid.Column="1"
Margin="5 24 0 0">

<ikw:SimpleStackPanel

Check warning on line 55 in Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`ikw` is not a recognized word (unrecognized-spelling)
HorizontalAlignment="Right"
VerticalAlignment="Center"
DockPanel.Dock="Right"
Expand Down Expand Up @@ -297,7 +297,7 @@
VerticalAlignment="Center"
Command="{Binding ShowCommandQueryCommand}"
CommandParameter="install"
Content="{DynamicResource installbtn}"

Check warning on line 300 in Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`installbtn` is not a recognized word (unrecognized-spelling)
Visibility="{Binding LabelInstalled, Converter={StaticResource BoolToVisibilityConverter}, ConverterParameter='!'}" />
<Button
MinHeight="42"
Expand All @@ -307,7 +307,7 @@
VerticalAlignment="Center"
Command="{Binding ShowCommandQueryCommand}"
CommandParameter="uninstall"
Content="{DynamicResource uninstallbtn}"

Check warning on line 310 in Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`uninstallbtn` is not a recognized word (unrecognized-spelling)
Visibility="{Binding LabelInstalled, Converter={StaticResource BoolToVisibilityConverter}}" />
<Button
MinHeight="42"
Expand All @@ -317,7 +317,7 @@
VerticalAlignment="Center"
Command="{Binding ShowCommandQueryCommand}"
CommandParameter="update"
Content="{DynamicResource updatebtn}"

Check warning on line 320 in Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml

View workflow job for this annotation

GitHub Actions / Check Spelling

`updatebtn` is not a recognized word (unrecognized-spelling)
Style="{DynamicResource AccentButtonStyle}"
Visibility="{Binding LabelUpdate, Converter={StaticResource BoolToVisibilityConverter}}" />
</VirtualizingStackPanel>
Expand All @@ -333,7 +333,7 @@
Margin="18 24 0 0"
HorizontalAlignment="Left"
RenderOptions.BitmapScalingMode="Fant"
Source="{Binding IcoPathAbsolute, IsAsync=True}" />
Source="{Binding IcoPath, IsAsync=True}" />
<Border
x:Name="LabelUpdate"
Height="12"
Expand Down
Loading