Skip to content

Commit

Permalink
Adding PR RobinPerris#41
Browse files Browse the repository at this point in the history
Fixed the display of the selected item in the combobox when changing its visibility from ricardodalarme:FixedComboBox
  • Loading branch information
FallenAvatar committed Mar 19, 2021
1 parent f579eb9 commit d806015
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions DarkUI/Controls/DarkComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ protected override void OnSelectedValueChanged(EventArgs e)
Invalidate();
}

protected override void OnVisibleChanged(EventArgs e) {
base.OnVisibleChanged(e);
Invalidate();
}

protected override void OnInvalidated(InvalidateEventArgs e)
{
base.OnInvalidated(e);
Expand Down
4 changes: 3 additions & 1 deletion SOURCES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ These PRs came from RobinPerris' Repo
1. #23 https://github.com/RobinPerris/DarkUI/pull/23
- Theme System from solalem:theme_support
2. #40 https://github.com/RobinPerris/DarkUI/pull/40
- Fixed DarkComboBox disabled text color from janrobas:master
- Fixed DarkComboBox disabled text color from janrobas:master
3. #41 https://github.com/RobinPerris/DarkUI/pull/41
- Fixed the display of the selected item in the combobox when changing its visibility from ricardodalarme:FixedComboBox

0 comments on commit d806015

Please sign in to comment.