We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23dc405 commit 8e9bf21Copy full SHA for 8e9bf21
CHANGELOG.md
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
17
## [Unreleased]
18
19
+### Fixed
20
+
21
+- [SIL.Windows.Forms] In `CustomDropDown.OnOpening`, fixed check that triggers timer to stop.
22
23
## [16.0.0] - 2025-05-20
24
25
### Added
SIL.Windows.Forms/Widgets/CustomDropDown.cs
@@ -184,8 +184,11 @@ protected override void OnOpening(System.ComponentModel.CancelEventArgs e)
184
timer.Tick += delegate
185
{
186
Opacity += 0.1;
187
- if (Opacity == 1f)
+ if (Opacity > .99)
188
+ {
189
+ Opacity = 1f;
190
timer.Stop();
191
+ }
192
};
193
194
timer.Start();
0 commit comments