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 333522e commit 45f54efCopy full SHA for 45f54ef
src/BizHawk.WinForms.Controls/FLPs/VirtualizedFlowLayoutPanel.cs
@@ -6,10 +6,10 @@ namespace BizHawk.Client.EmuHawk;
6
7
public class VirtualizedFlowLayoutPanel : FlowLayoutPanel
8
{
9
- private VScrollBar _boundScrollBar;
+ private VScrollBar? _boundScrollBar;
10
public VScrollBar BoundScrollBar
11
12
- get => _boundScrollBar;
+ get => _boundScrollBar!;
13
set
14
15
_boundScrollBar = value;
0 commit comments