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:
parent
e687c4ab1a
commit
551acd8c9e
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue