Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bc13734d5 | |||
| 743bb74bd5 |
+1
-1
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<Authors>cultbaus</Authors>
|
||||
<Company>-</Company>
|
||||
<Version>0.0.3.7</Version>
|
||||
<Version>0.0.3.9</Version>
|
||||
<Description>This plugin manipulates flytext.</Description>
|
||||
<Copyright>-</Copyright>
|
||||
<PackageProjectUrl>https://github.com/cultbaus/CBT</PackageProjectUrl>
|
||||
|
||||
@@ -50,7 +50,7 @@ public class FontManager : IDisposable
|
||||
.ToList()
|
||||
.ForEach(file =>
|
||||
{
|
||||
Enumerable.Range(14, 32 - 14 + 1)
|
||||
Enumerable.Range(14, 64 - 14 + 1)
|
||||
.Where(i => i % 2 == 0)
|
||||
.ToList()
|
||||
.ForEach(size =>
|
||||
|
||||
@@ -354,7 +354,7 @@ public abstract class Tab
|
||||
if (this.CurrentIconEnabled)
|
||||
{
|
||||
GuiArtist.DrawLabelPrefix("Select Icon Size", sameLine: false);
|
||||
GuiArtist.DrawInputInt($"Icon Size_{this.Name}", sameLine: true, (int)this.CurrentIconSize, 14, 32, size => { this.CurrentIconSize = size; });
|
||||
GuiArtist.DrawInputInt($"Icon Size_{this.Name}", sameLine: true, (int)this.CurrentIconSize, 14, 64, size => { this.CurrentIconSize = size; });
|
||||
|
||||
GuiArtist.DrawSubTitle("Icon Outline Configurations");
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user