log window icon

This commit is contained in:
adelikat 2020-06-30 18:06:12 -05:00
parent 6e938718f5
commit 5ef46b9969
3 changed files with 3 additions and 1 deletions

View File

@ -155,7 +155,7 @@
this.MainMenuStrip = this.MenuStrip;
this.MinimumSize = new System.Drawing.Size(171, 97);
this.Name = "LogWindow";
this.ShowIcon = false;
this.ShowIcon = true;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Log Window";
this.Load += new System.EventHandler(this.LogWindow_Load);

View File

@ -26,6 +26,7 @@ namespace BizHawk.Client.EmuHawk
public LogWindow()
{
InitializeComponent();
Icon = Properties.Resources.CommandWindow;
AddToGameDbBtn.Image = Properties.Resources.add;
Closing += (o, e) =>
{

View File

@ -212,5 +212,6 @@ namespace BizHawk.Client.EmuHawk.Properties
internal static readonly Bitmap YellowLeft = ReadEmbeddedBitmap("YellowLeft");
internal static readonly Bitmap YellowRight = ReadEmbeddedBitmap("YellowRight");
internal static readonly Bitmap YellowUp = ReadEmbeddedBitmap("YellowUp");
internal static readonly Icon CommandWindow = ReadEmbeddedIcon("commandWindow");
}
}