Skip to content

Commit

Permalink
Rider Support
Browse files Browse the repository at this point in the history
  • Loading branch information
AsgardXIV committed May 1, 2022
1 parent 7ba31d1 commit 8696ac7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
publish/
\.vs/
\.idea/
packages/
*.user
bin/
Expand Down
2 changes: 0 additions & 2 deletions Anamnesis/Files/FileService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ public static async Task<OpenResult> Open(DirectoryInfo? defaultDirectory, Short
Log.Verbose(ex, $"Attempted to deserialize file: {info} as type: {fileType} failed.");
throw;
}

throw new Exception($"Unrecognised file: {info}");
}

public static FileBase? Load(FileInfo info, Type[] fileTypes)
Expand Down
4 changes: 2 additions & 2 deletions Anamnesis/Styles/Drawers/ColorSelectorDrawer.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<ListBox Name="RecentList" ItemContainerStyle="{StaticResource ListBoxItemStyle}" SelectionChanged="OnSelectionChanged" Margin="2, 0, 1, 5" HorizontalAlignment="Left">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel x:Name="wrapPanel"/>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
Expand All @@ -91,7 +91,7 @@
<ListBox Name="List" ItemContainerStyle="{StaticResource ListBoxItemStyle}" SelectionChanged="OnSelectionChanged" Margin="1, 0, 1, 8" HorizontalAlignment="Center">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel x:Name="wrapPanel"/>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
Expand Down

0 comments on commit 8696ac7

Please sign in to comment.