Fix for compile error... :(

This commit is contained in:
RKrom 2014-11-03 15:29:31 +01:00
parent fc7faecaa5
commit 850c54fdee
2 changed files with 1 additions and 5 deletions

View file

@ -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 {

View file

@ -432,10 +432,6 @@ namespace GreenshotPlugin.Core {
if (OutputFileReduceColorsTo > 256) {
OutputFileReduceColorsTo = 256;
}
if (ContextMenuIconSize == Size.Empty) {
ContextMenuIconSize = new Size(16,16);
}
}
}
}