Skip to content

Commit

Permalink
[release] v1.5.3.0 (patch)
Browse files Browse the repository at this point in the history
i was dumb, this is the *actual* fix
  • Loading branch information
dit-zy committed Jul 27, 2024
1 parent 9d91d1a commit bd4623e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ScoutHelper/ScoutHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Dalamud.NET.Sdk/9.0.2">
<PropertyGroup Label="feature">
<Authors>ditzy</Authors>
<Version>1.5.2.0</Version>
<Version>1.5.3.0</Version>
<Description>A helper plugin for pre-populating hunt train scout tracker links</Description>
<PackageProjectUrl>https://github.com/im-scared/scout-helper</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
Expand Down
16 changes: 8 additions & 8 deletions ScoutHelper/Windows/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ ConfigWindow configWindow
MaximumSize = new Vector2(float.MaxValue, float.MaxValue),
};

try {
_buttonSize = new Lazy<Vector2>(
() => {
_buttonSize = new Lazy<Vector2>(
() => {
try {
var buttonSize = new[] {
[Strings.BearButton],
[Strings.SirenButton],
Expand All @@ -113,12 +113,12 @@ ConfigWindow configWindow
.MaxBy(size => size.X);
buttonSize.X += 4 * ImGui.GetFontSize(); // add some horizontal padding
return buttonSize;
} catch (Exception e) {
_log.Error(e, "error while determining button size.");
throw;
}
);
} catch (Exception e) {
_log.Error(e, "error while determining button size.");
throw;
}
}
);

_notices = Constants.Notices;

Expand Down

0 comments on commit bd4623e

Please sign in to comment.