Index: src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/Commands/MapFixedZoomOutCommand.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/Commands/MapFixedZoomOutCommand.cs (.../MapFixedZoomOutCommand.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/Commands/MapFixedZoomOutCommand.cs (.../MapFixedZoomOutCommand.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -5,20 +5,23 @@ { public class MapFixedZoomOutCommand : MapViewCommand { + public override bool Checked + { + get + { + return false; + } + set {} + } + protected override void OnExecute(params object[] arguments) { var activeView = SharpMapGisGuiPlugin.GetFocusedMapView(); - + IMapTool tool = activeView.MapControl.GetToolByType(); tool.Execute(); base.OnExecute(arguments); } - - public override bool Checked - { - get { return false; } - set { } - } } } \ No newline at end of file