diff --git a/FizzyLauncher.UI/RyzStudio/Windows/Forms/TForm.cs b/FizzyLauncher.UI/RyzStudio/Windows/Forms/TForm.cs index 2c821e1..011e1b2 100644 --- a/FizzyLauncher.UI/RyzStudio/Windows/Forms/TForm.cs +++ b/FizzyLauncher.UI/RyzStudio/Windows/Forms/TForm.cs @@ -161,7 +161,7 @@ namespace AppLauncher.Windows.Forms g.FillRectangle(new SolidBrush(titleBarColour), area.X, area.Y, (area.Width + area.X), titleBarHeight); g.DrawLine(new Pen(titleBorderColour, 1), area.X, (titleBarHeight + 1), (area.Width + area.X), (titleBarHeight + 1)); - if (!DesignMode) g.DrawImageUnscaled(this.AppIcon, 21, 17); + if (!DesignMode) g.DrawImageUnscaled(this.AppIcon, 17, 13); if (!DesignMode) TextRenderer.DrawText(g, Application.ProductName, new Font(this.Font.FontFamily, 14F), new Point(58, 17), titleColour); diff --git a/MainForm.cs b/MainForm.cs index e434b0b..a5fd747 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -34,7 +34,7 @@ namespace AppLauncher { InitializeComponent(); - this.AppIcon = Properties.Resources.app_icon_24; + this.AppIcon = Properties.Resources.app_icon_32; this.StartPosition = FormStartPosition.WindowsDefaultBounds; } @@ -126,11 +126,6 @@ namespace AppLauncher public LauncherSession CurrentSession { get; set; } = null; - /// - /// New - /// - /// - /// private void toolStripMenuItem5_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(sessionFilename)) @@ -163,11 +158,6 @@ namespace AppLauncher } } - /// - /// Open - /// - /// - /// private async void toolStripMenuItem7_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(sessionFilename)) @@ -205,11 +195,6 @@ namespace AppLauncher } } - /// - /// Close - /// - /// - /// private void toolStripMenuItem8_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(sessionFilename)) @@ -242,11 +227,6 @@ namespace AppLauncher } } - /// - /// Save - /// - /// - /// private void toolStripMenuItem6_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(sessionFilename)) @@ -259,25 +239,10 @@ namespace AppLauncher } } - /// - /// Save As - /// - /// - /// private void toolStripMenuItem2_Click(object sender, EventArgs e) => saveAsFile(); - /// - /// Always On Top - /// - /// - /// private void toolStripMenuItem1_Click(object sender, EventArgs e) => this.TopMost = !this.TopMost; - /// - /// Exit - /// - /// - /// private void exitToolStripMenuItem_Click(object sender, EventArgs e) => this.Close(); private void optionToolStripMenuItem_Click(object sender, EventArgs e)