Skip to content

Commit 0a2c8ab

Browse files
committed
⏱ Added slideshow settings
Added: - New file icons: .svg, .ico, .dds, .tga - Zoom to actual size - Settings -> Slideshow: show slideshow counter - Settings -> Slideshow: switching time Fixed: - Fullscreen panel bug - Fullscreen slideshow bug
1 parent 6fd143d commit 0a2c8ab

File tree

10 files changed

+9
-2
lines changed

10 files changed

+9
-2
lines changed

.vs/QuickLibrary/v16/.suo

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

QuickLibrary/QlibNumericBox.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,17 @@ protected override void OnMouseClick(MouseEventArgs e)
5151
this.Focus();
5252
if (e.Y > this.Height / 2)
5353
{
54-
this.Value--;
54+
if (this.Value > this.Minimum)
55+
{
56+
this.Value--;
57+
}
5558
}
5659
else
5760
{
58-
this.Value++;
61+
if (this.Value < this.Maximum)
62+
{
63+
this.Value++;
64+
}
5965
}
6066
}
6167
}
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

QuickLibrary/obj/Release/QuickLibrary.csproj.FileListAbsolute.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ D:\Projects\DotNet\quick-library\QuickLibrary\obj\Release\QuickLibrary.csproj.Ge
1616
D:\Projects\DotNet\quick-library\QuickLibrary\obj\Release\QuickLibrary.csproj.CopyComplete
1717
D:\Projects\DotNet\quick-library\QuickLibrary\obj\Release\QuickLibrary.dll
1818
D:\Projects\DotNet\quick-library\QuickLibrary\obj\Release\QuickLibrary.pdb
19+
D:\Projects\DotNet\quick-library\QuickLibrary\obj\Release\QuickLibrary.csprojAssemblyReference.cache
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)