Skip to content

Commit 0663d45

Browse files
committed
Fix
1 parent 655cab3 commit 0663d45

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

YAFC/Widgets/ImmediateWidgets.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static bool BuildInlineObjectList<T>(this ImGui gui, IEnumerable<T> list,
130130

131131
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
132132
{
133-
using (gui.EnterGroup(default, RectAllocator.LeftAlign))
133+
using (gui.EnterGroup(default, RectAllocator.Stretch))
134134
{
135135
if (gui.BuildInlineObjectList(list, ordering, header, out var selected, count, checkmark, extra))
136136
{

YAFC/YAFC.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<TargetFramework>netcoreapp3.1</TargetFramework>
77
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
88
<PlatformTarget>x64</PlatformTarget>
9-
<AssemblyVersion>0.5.7</AssemblyVersion>
10-
<FileVersion>0.5.7</FileVersion>
9+
<AssemblyVersion>0.5.7.1</AssemblyVersion>
10+
<FileVersion>0.5.7.1</FileVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)