Skip to content

Commit 53dd986

Browse files
committed
v2.2.3
1 parent 3282d36 commit 53dd986

12 files changed

+6
-7
lines changed

.vs/QuickLibrary/v16/.suo

6 KB
Binary file not shown.
0 Bytes
Binary file not shown.

QuickLibrary/QlibNumericBox.cs renamed to QuickLibrary/QlibNumeric.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using System;
22
using System.ComponentModel;
33
using System.Drawing;
4-
using System.Drawing.Drawing2D;
54
using System.Windows.Forms;
65

76
namespace QuickLibrary
87
{
9-
public class QlibNumericBox : Panel
8+
public class QlibNumeric : Panel
109
{
1110
// PRIVATE FIELDS
1211

@@ -88,7 +87,7 @@ public bool DarkMode
8887

8988
// CONSTRUCTOR
9089

91-
public QlibNumericBox()
90+
public QlibNumeric()
9291
{
9392
numeric = new InternalNumericUpDown();
9493
numeric.Location = new Point(7, 7);
@@ -216,9 +215,9 @@ private void SetDarkMode(bool dark)
216215
}
217216
downBtn.Image = downArrowBmp;
218217

219-
numeric.BackColor = ThemeManager.DarkSecondColor;
220-
upBtn.BackColor = ThemeManager.DarkSecondColor;
221-
downBtn.BackColor = ThemeManager.DarkSecondColor;
218+
numeric.BackColor = BackColor;
219+
upBtn.BackColor = BackColor;
220+
downBtn.BackColor = BackColor;
222221
}
223222

224223
// EVENTS

QuickLibrary/QuickLibrary.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<Compile Include="QlibGroupBox.cs">
9090
<SubType>Component</SubType>
9191
</Compile>
92-
<Compile Include="QlibNumericBox.cs">
92+
<Compile Include="QlibNumeric.cs">
9393
<SubType>Component</SubType>
9494
</Compile>
9595
<Compile Include="QlibRadioButton.cs">

QuickLibrary/bin/Debug/Octokit.dll

-312 KB
Binary file not shown.
-43 KB
Binary file not shown.
-99.5 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)