Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowTheAge committed May 18, 2021
1 parent 655cab3 commit 0663d45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion YAFC/Widgets/ImmediateWidgets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static bool BuildInlineObjectList<T>(this ImGui gui, IEnumerable<T> list,

public static void BuildInlineObejctListAndButton<T>(this ImGui gui, ICollection<T> list, IComparer<T> ordering, Action<T> select, string header, int count = 6, bool multiple = false, Predicate<T> checkmark = null, bool allowNone = false, Func<T, string> extra = null) where T:FactorioObject
{
using (gui.EnterGroup(default, RectAllocator.LeftAlign))
using (gui.EnterGroup(default, RectAllocator.Stretch))
{
if (gui.BuildInlineObjectList(list, ordering, header, out var selected, count, checkmark, extra))
{
Expand Down
4 changes: 2 additions & 2 deletions YAFC/YAFC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<PlatformTarget>x64</PlatformTarget>
<AssemblyVersion>0.5.7</AssemblyVersion>
<FileVersion>0.5.7</FileVersion>
<AssemblyVersion>0.5.7.1</AssemblyVersion>
<FileVersion>0.5.7.1</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0663d45

Please sign in to comment.