|
@@ -20,22 +20,23 @@ namespace PixiEditor.Models.Tools.Tools
|
|
|
|
|
|
public override void OnKeyDown(KeyEventArgs e)
|
|
|
{
|
|
|
- if (e.Key == Key.LeftAlt)
|
|
|
+ if (e.Key == Key.LeftCtrl)
|
|
|
{
|
|
|
- ActionDisplay = "Click and move to zoom. Click to zoom out, release alt and click to zoom in.";
|
|
|
+ ActionDisplay = "Click and move to zoom. Click to zoom out, release ctrl and click to zoom in.";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public override void OnKeyUp(KeyEventArgs e)
|
|
|
{
|
|
|
- if (e.Key == Key.LeftAlt)
|
|
|
+ if (e.Key == Key.LeftCtrl)
|
|
|
{
|
|
|
- ActionDisplay = "Click and move to zoom. Click to zoom in, hold alt and click to zoom out.";
|
|
|
+ ActionDisplay = "Click and move to zoom. Click to zoom in, hold ctrl and click to zoom out.";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public override void Use(List<Coordinates> pixels)
|
|
|
{
|
|
|
+ // Implemented inside Zoombox.xaml.cs
|
|
|
}
|
|
|
}
|
|
|
}
|