Adjust debug log tab icon

This commit is contained in:
W2Wizard
2021-06-13 22:37:47 +02:00
parent 5408898e15
commit 83e6319643
2 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,7 @@ namespace FlaxEditor.GUI.Docking
/// <summary>
/// The default tabs header buttons size.
/// </summary>
public const float DefaultButtonsSize = 12;
public const float DefaultButtonsSize = 15;
/// <summary>
/// The default tabs header buttons margin.

View File

@@ -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;
}
}