Skip to content

Commit

Permalink
-fixed single point tactical graphic icon sizing bug introduced in 0.…
Browse files Browse the repository at this point in the history
…1.56
  • Loading branch information
Michael Spinelli committed Mar 25, 2024
1 parent 7764259 commit a8e34c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.1.57
version=0.1.58
android.enableBuildCache=true
org.gradle.jvmargs=-Xmx1536M

2 changes: 1 addition & 1 deletion renderer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ afterEvaluate{

ext {
PUBLISH_GROUP_ID = 'io.github.missioncommand'
PUBLISH_VERSION = '0.1.57'
PUBLISH_VERSION = '0.1.58'
PUBLISH_ARTIFACT_ID = 'mil-sym-android-renderer'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -718,11 +718,6 @@ else if (SymbolUtilities.isWeatherSPWithFill(symbolID))
{
pixelSize = Integer.parseInt(attributes.get(MilStdAttributes.PixelSize));
}
if (attributes.indexOfKey(MilStdAttributes.OutlineSymbol) >= 0)
{
if(Boolean.parseBoolean(attributes.get(MilStdAttributes.OutlineSymbol))==false);
symbolOutlineWidth = 0;
}
else
{
if(keepUnitRatio == true)
Expand All @@ -740,6 +735,11 @@ else if (SymbolUtilities.isWeatherSPWithFill(symbolID))

}
}
if (attributes.indexOfKey(MilStdAttributes.OutlineSymbol) >= 0)
{
if(Boolean.parseBoolean(attributes.get(MilStdAttributes.OutlineSymbol))==false);
symbolOutlineWidth = 0;
}



Expand Down

0 comments on commit a8e34c7

Please sign in to comment.