Skip to content

Commit

Permalink
Merge pull request #442 from wbonbon/master
Browse files Browse the repository at this point in the history
added alternatives to "Get Action Icon"
  • Loading branch information
wbonbon authored Dec 16, 2024
2 parents e29615d + 2b757db commit c30d0b8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion source/@MasterVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.4.5
v10.4.6
4 changes: 2 additions & 2 deletions source/ACT.Hojoring.Common/Version.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyVersion("10.4.0.5")]
[assembly: AssemblyFileVersion("10.4.0.5")]
[assembly: AssemblyVersion("10.4.0.6")]
[assembly: AssemblyFileVersion("10.4.0.6")]
Original file line number Diff line number Diff line change
Expand Up @@ -797,13 +797,13 @@

<CheckBox Margin="0 0 0 0" Content="{DynamicResource Common_RecastTimeOverIcon}" IsChecked="{Binding Model.OverlapRecastTime, Mode=TwoWay}" Visibility="{Binding Model.IsStandardStyle, Mode=OneWay, Converter={StaticResource VisibilityConverter}}" />
<CheckBox Margin="0 5 0 0" Content="{DynamicResource Common_ToDarkBetweenRecast}" IsChecked="{Binding Model.ReduceIconBrightness, Mode=TwoWay}" />
<!--

<TextBlock Margin="0 10 0 0" HorizontalAlignment="Left">
<Hyperlink Command="{Binding GetIconsCommand, Mode=OneWay}">
<Hyperlink NavigateUri="https://github.com/anoyetta/ACT.Hojoring/issues/440" RequestNavigate = "Hyperlink_RequestNavigate">
<TextBlock Text="{DynamicResource Common_GetIcon}" />
</Hyperlink>
</TextBlock>
-->

</StackPanel>

<!-- その他 -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ private void Panel_SelectionChanged(
oldPanel?.SetupChildrenSource();
newPanel?.SetupChildrenSource();
}
private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
{
System.Diagnostics.Process.Start(e.Uri.ToString());
}

#region for XML Panel

Expand Down

0 comments on commit c30d0b8

Please sign in to comment.