Skip to content

Commit eb9a108

Browse files
committed
Merge branch 'dev'
2 parents 101b66a + 50cb00c commit eb9a108

39 files changed

+1161
-785
lines changed

ARKBreedingStats/ARKBreedingStats.csproj

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@
206206
<Compile Include="StatsOptions\LevelColorSettings\LevelGraphOptionsControl.cs">
207207
<SubType>Component</SubType>
208208
</Compile>
209+
<Compile Include="uiControls\StatsDisplay.cs">
210+
<SubType>Component</SubType>
211+
</Compile>
209212
<Compile Include="uiControls\StatSelector.cs">
210213
<SubType>UserControl</SubType>
211214
</Compile>
@@ -522,12 +525,6 @@
522525
<Compile Include="uiControls\RegionColorChooser.Designer.cs">
523526
<DependentUpon>RegionColorChooser.cs</DependentUpon>
524527
</Compile>
525-
<Compile Include="uiControls\StatsDisplay.cs">
526-
<SubType>UserControl</SubType>
527-
</Compile>
528-
<Compile Include="uiControls\StatsDisplay.Designer.cs">
529-
<DependentUpon>StatsDisplay.cs</DependentUpon>
530-
</Compile>
531528
<Compile Include="uiControls\StatGraphs.cs">
532529
<SubType>Component</SubType>
533530
</Compile>
@@ -726,6 +723,7 @@
726723
<Compile Include="utils\ExceptionMessages.cs" />
727724
<Compile Include="utils\ExtensionMethods.cs" />
728725
<Compile Include="utils\CreatureListSorter.cs" />
726+
<Compile Include="utils\LevelColorBar.cs" />
729727
<Compile Include="utils\Logging.cs" />
730728
<Compile Include="utils\MessageBoxes.cs" />
731729
<Compile Include="NamePatterns\NamePatternFunctions.cs" />
@@ -966,9 +964,6 @@
966964
<EmbeddedResource Include="uiControls\RegionColorChooser.resx">
967965
<DependentUpon>RegionColorChooser.cs</DependentUpon>
968966
</EmbeddedResource>
969-
<EmbeddedResource Include="uiControls\StatsDisplay.resx">
970-
<DependentUpon>StatsDisplay.cs</DependentUpon>
971-
</EmbeddedResource>
972967
<EmbeddedResource Include="uiControls\StatPotential.resx">
973968
<DependentUpon>StatPotential.cs</DependentUpon>
974969
</EmbeddedResource>

ARKBreedingStats/CreatureBox.Designer.cs

Lines changed: 4 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ARKBreedingStats/CreatureBox.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ void SetParentLabel(Label l, string lbText = null, bool clickable = false)
146146
statsDisplay1.SetCreatureValues(_creature);
147147
labelNotes.Text = _creature.note;
148148
_tt.SetToolTip(labelNotes, _creature.note);
149-
labelSpecies.Text = _creature.SpeciesName;
150149
pictureBox1.SetImageAndDisposeOld(CreatureColored.GetColoredCreature(_creature.colors, _creature.Species, _colorRegionUseds, creatureSex: _creature.sex, game: _cc.Game));
151150
_tt.SetToolTip(pictureBox1, CreatureColored.RegionColorInfo(_creature.Species, _creature.colors)
152151
+ "\n\nClick to copy creature infos as image to the clipboard");
@@ -208,7 +207,6 @@ public void Clear()
208207
LbFather.Text = string.Empty;
209208
statsDisplay1.Clear();
210209
pictureBox1.Visible = false;
211-
labelSpecies.Text = string.Empty;
212210
labelNotes.Text = string.Empty;
213211
regionColorChooser1.Clear();
214212
}

0 commit comments

Comments
 (0)