Gale Andrews wrote:Do we want to describe only the yellow border focus?
That would be a good start.
Gale Andrews wrote:Is any other unseen focus relevant (the focus that would show if you ran accessibility tools)?
I've not used accessibility tools so I don't know what those things are.
Dragging selected audio in multiple tracks vertically:
For the simple case with 4 tracks:
"-----"= white space.
"WWWW" = selected audio clip.
"NNN" = Not selected audio clip.
Before dragging:
Code: Select all
---WWW----
WWWW------
----------
----------
After dragging
either audio clip one track down:
Code: Select all
----------
---WWW----
WWWW------
----------
After dragging another track down:
Code: Select all
----------
----------
---WWW----
WWWW------
Provided there is room in the destination track for the dragged clips, the clips can be dragged. This is the same "rule" as when dragging multiple selected audio clips horizontally.
A more complex example:
Code: Select all
---WWW----
NNN--NNN--
WWWW------
----------
----------
The selected audio clips cannot be dragged down by one track because there is no room in track 2 for the audio clip in track 1, but if we keep dragging, they can be dragged down by two tracks to give:
Code: Select all
----------
NNN--NNN--
---WWW----
----------
WWWW------
Again it is the same rule as when dragging multiple clips horizontally; the clips can be dragged as long as there is room for them.
However, if we allow discontinuous selections and dragging multiple clips vertically as well as horizontally, it becomes horribly complicated in complex cases if multiple discontinuous selected audio clips are dragged vertically AND horizontally.
This:
can drag to here:
and then drag (jump) to here:
and to here:
and then drag (jump) to here:
and on...
Even as now where we only drag multiple clips horizontally, doing so when there are other clips "in the way" quickly reveals the difficulty in handling this in the code.Adding another "dimension" to the dragging makes it
much more difficult, (although in my opinion it should be
possible to keep to the same "simple" rule of allowing dragging provided there is room for all of the dragged clips).