diff --git a/components/editor/EditControls.tsx b/components/editor/EditControls.tsx index 0807342..e690c6f 100644 --- a/components/editor/EditControls.tsx +++ b/components/editor/EditControls.tsx @@ -37,17 +37,17 @@ export function EditControls({
{/* Selection Info */} {hasSelection && ( -
+
- -
-

Selection Active

-

+ +

+

Selection Active

+

Duration: {formatDuration(selectionDuration)} | Start: {formatDuration(selection.start)} | End: {formatDuration(selection.end)}

-

+

Tip: Hold Shift and drag on the waveform to select a region

diff --git a/components/editor/HistoryControls.tsx b/components/editor/HistoryControls.tsx index 5251756..bbda2f9 100644 --- a/components/editor/HistoryControls.tsx +++ b/components/editor/HistoryControls.tsx @@ -25,21 +25,21 @@ export function HistoryControls({
{/* History Info */} {historyState.historySize > 0 && ( -
+
- -
-

History Available

-

+ +

+

History Available

+

{historyState.historySize} action{historyState.historySize !== 1 ? 's' : ''} in history

{historyState.undoDescription && ( -

+

Next undo: {historyState.undoDescription}

)} {historyState.redoDescription && ( -

+

Next redo: {historyState.redoDescription}

)}