Skip to content

Commit

Permalink
0.1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shoushou1106 committed Mar 2, 2024
1 parent 1a0a23a commit 99b3e48
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

[assembly: PluginDisplayName("Find in Files")]
[assembly: PluginAuthor("shoushou1106")]
[assembly: PluginVersion("0.1.4.0")]
[assembly: PluginVersion("0.1.4.1")]

[assembly: RegisterMenuExtension(typeof(FindinFilesMenuExtension))]
17 changes: 14 additions & 3 deletions Windows/FindinFilesWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,22 @@
</StackPanel>

<!-- Result list -->
<core:FrostyAssetListView x:Name="ResultAssetListView" Grid.Row="1" Margin="0 0 3 0" BorderThickness="1" BorderBrush="{StaticResource WindowBackground}" >
<core:FrostyAssetListView x:Name="ResultAssetListView" Grid.Row="1" Margin="0 0 3 0" BorderThickness="1" BorderBrush="{StaticResource WindowBackground}"
SelectedAssetDoubleClick="ResultAssetListOpenItem_Click">
<core:FrostyAssetListView.AssetContextMenu>
<ContextMenu>
<MenuItem x:Name="ResultAssetListOpenItem" Header="Open asset" Click="ResultAssetListOpenItem_Click"/>
<MenuItem x:Name="ResultAssetListFindItem" Header="Find in data explorer" Click="ResultAssetListFindItem_Click"/>
<MenuItem x:Name="ResultAssetListOpenItem" Header="Open asset" Click="ResultAssetListOpenItem_Click">
<MenuItem.Icon>
<Image Source="/FrostyEditor;component/Images/OpenAsset.png"
RenderOptions.BitmapScalingMode="Fant" />
</MenuItem.Icon>
</MenuItem>
<MenuItem x:Name="ResultAssetListFindItem" Header="Find in data explorer" Click="ResultAssetListFindItem_Click">
<MenuItem.Icon>
<Image Source="/FrostyEditor;component/Images/Open.png"
RenderOptions.BitmapScalingMode="Fant" />
</MenuItem.Icon>
</MenuItem>
</ContextMenu>
</core:FrostyAssetListView.AssetContextMenu>
</core:FrostyAssetListView>
Expand Down

0 comments on commit 99b3e48

Please sign in to comment.