diff --git a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs index 80b8f5d9..4cee879f 100644 --- a/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs +++ b/CSharp/Engines/WindowsForms/Engines/UniversalEditor.UserInterface.WindowsForms.DesktopApplication/Controls/OutputWindow.cs @@ -5,6 +5,8 @@ using System.Drawing; using System.Text; using System.Windows.Forms; +using AwesomeControls; + namespace UniversalEditor.UserInterface.WindowsForms.Controls { public partial class OutputWindow : UserControl @@ -17,6 +19,8 @@ namespace UniversalEditor.UserInterface.WindowsForms.Controls txtOutput.ForeColor = AwesomeControls.Theming.Theme.CurrentTheme.ColorTable.WindowForeground; txtOutput.Font = new System.Drawing.Font(System.Drawing.FontFamily.GenericMonospace, 10, FontStyle.Regular); txtOutput.BorderStyle = System.Windows.Forms.BorderStyle.None; + + cbToolBar1.LoadThemeIcons("OutputWindow"); } public void AppendText(string text)