diff --git a/Source/Engine/UI/GUI/Panels/BlurPanel.cs b/Source/Engine/UI/GUI/Panels/BlurPanel.cs
index 0fe506e44..055535aa8 100644
--- a/Source/Engine/UI/GUI/Panels/BlurPanel.cs
+++ b/Source/Engine/UI/GUI/Panels/BlurPanel.cs
@@ -11,7 +11,7 @@ namespace FlaxEngine.GUI
///
/// Gets or sets the blur strength. Defines how blurry the background is. Larger numbers increase blur, resulting in a larger runtime cost on the GPU.
///
- [EditorOrder(0), Limit(0, 100, 0.0f)]
+ [EditorOrder(0), Limit(0, 100, 0.1f)]
public float BlurStrength { get; set; }
///
@@ -29,10 +29,9 @@ namespace FlaxEngine.GUI
}
///
- public override void Draw()
+ public override void DrawSelf()
{
- base.Draw();
-
+ base.DrawSelf();
var size = Size;
var strength = BlurStrength;
if (BlurScaleWithSize)