diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index e95d94094..1eaa229bc 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -692,7 +692,7 @@ namespace Greenshot { #region contextmenu void ContextMenuOpening(object sender, CancelEventArgs e) { contextmenu_captureclipboard.Enabled = ClipboardHelper.ContainsImage(); - contextmenu_capturelastregion.Enabled = RuntimeConfig.LastCapturedRegion != Rectangle.Empty; + contextmenu_capturelastregion.Enabled = coreConfiguration.LastCapturedRegion != Rectangle.Empty; // IE context menu code try { diff --git a/GreenshotPlugin/Core/CoreConfiguration.cs b/GreenshotPlugin/Core/CoreConfiguration.cs index 51efd62f6..fa2a5d0e7 100644 --- a/GreenshotPlugin/Core/CoreConfiguration.cs +++ b/GreenshotPlugin/Core/CoreConfiguration.cs @@ -432,10 +432,6 @@ namespace GreenshotPlugin.Core { if (OutputFileReduceColorsTo > 256) { OutputFileReduceColorsTo = 256; } - - if (ContextMenuIconSize == Size.Empty) { - ContextMenuIconSize = new Size(16,16); - } } } } \ No newline at end of file