tastudio: shift is occupied, alt is not. use alt for marker drag!

the need to draw selection in patterns is too weak, so we can safely leave alt-clicks and alt-draws to input columns only (when it's implemented).
This commit is contained in:
feos 2015-08-06 20:24:56 +03:00
parent e687c4ab1a
commit 551acd8c9e
2 changed files with 3 additions and 2 deletions

View File

@ -1624,7 +1624,8 @@ namespace BizHawk.Client.EmuHawk
{
if (ModifierKeys == Keys.Alt)
{
MessageBox.Show("Alt click logic is not yet implemented");
// MessageBox.Show("Alt click logic is not yet implemented");
// do marker drag here
}
else if (ModifierKeys == Keys.Shift)
{

View File

@ -363,7 +363,7 @@ namespace BizHawk.Client.EmuHawk
}
else if (TasView.CurrentCell.Column.Name == FrameColumnName)
{
if (Control.ModifierKeys == Keys.Shift && CurrentTasMovie.Markers.IsMarker(frame))
if (Control.ModifierKeys == Keys.Alt && CurrentTasMovie.Markers.IsMarker(frame))
{
// TODO
TasView.DragCurrentCell();