diff --git a/Source/Editor/GUI/Docking/DockPanel.cs b/Source/Editor/GUI/Docking/DockPanel.cs
index f968c2501..0f31759f2 100644
--- a/Source/Editor/GUI/Docking/DockPanel.cs
+++ b/Source/Editor/GUI/Docking/DockPanel.cs
@@ -84,7 +84,7 @@ namespace FlaxEditor.GUI.Docking
///
/// The default tabs header buttons size.
///
- public const float DefaultButtonsSize = 12;
+ public const float DefaultButtonsSize = 15;
///
/// The default tabs header buttons margin.
diff --git a/Source/Editor/Windows/DebugLogWindow.cs b/Source/Editor/Windows/DebugLogWindow.cs
index e95debfff..13f72992c 100644
--- a/Source/Editor/Windows/DebugLogWindow.cs
+++ b/Source/Editor/Windows/DebugLogWindow.cs
@@ -480,15 +480,15 @@ namespace FlaxEditor.Windows
{
if (_iconType == LogType.Warning)
{
- Icon = IconWarning;
+ Icon = Editor.Icons.Warning32;
}
else if (_iconType == LogType.Error)
{
- Icon = IconError;
+ Icon = Editor.Icons.Error32;
}
else
{
- Icon = IconInfo;
+ Icon = Editor.Icons.Info32;
}
}