From d20d929515e8d5bfd48190a93b67f84a3c37b906 Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Mon, 2 Feb 2026 23:16:17 +0300 Subject: [PATCH] Call base method in Form class. --- Dashboard/Controls/Form.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dashboard/Controls/Form.cs b/Dashboard/Controls/Form.cs index 1da38c3..2ed48c7 100644 --- a/Dashboard/Controls/Form.cs +++ b/Dashboard/Controls/Form.cs @@ -66,6 +66,8 @@ namespace Dashboard.Controls foreach (Control child in this) child.SendEvent(this, new PaintEventArgs(dc)); + base.OnPaint(dc); + dc.End(); }