Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit f4024cb

Browse files
author
Avery King
committed
Move time toolbar next to transport toolbar
Saucedacity's default settings now place the time toolbar next to the transport toolbar. This isn't a big change in itself, but it could mean the start of a toolbar rearrangement. Signed-off-by: Avery King <[email protected]>
1 parent 4e0dc5c commit f4024cb

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/toolbars/ToolManager.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,8 @@ static struct DefaultConfigEntry {
531531
} DefaultConfigTable [] = {
532532
// Top dock row, may wrap
533533
{ TransportBarID, NoBarID, NoBarID },
534-
{ ToolsBarID, TransportBarID, NoBarID },
534+
{ TimeBarID, TransportBarID, NoBarID },
535+
{ ToolsBarID, TimeBarID, NoBarID },
535536
{ RecordMeterBarID, ToolsBarID, NoBarID },
536537
{ PlayMeterBarID, RecordMeterBarID, NoBarID },
537538
{ MixerBarID, PlayMeterBarID, NoBarID },
@@ -553,7 +554,6 @@ static struct DefaultConfigEntry {
553554

554555
// Bottom dock
555556
{ SelectionBarID, NoBarID, NoBarID },
556-
{ TimeBarID, SelectionBarID, NoBarID },
557557

558558
// Hidden by default in bottom dock
559559
{ SpectralSelectionBarID, NoBarID, NoBarID },
@@ -604,7 +604,6 @@ void ToolManager::Reset()
604604
#ifdef EXPERIMENTAL_SPECTRAL_EDITING
605605
|| ndx == SpectralSelectionBarID
606606
#endif
607-
|| ndx == TimeBarID
608607
)
609608
dock = mBotDock;
610609
else
@@ -775,8 +774,6 @@ void ToolManager::ReadConfig()
775774
bShownByDefault = false;
776775
if( ndx == ScrubbingBarID )
777776
bShownByDefault = false;
778-
if( ndx == TimeBarID )
779-
defaultDock = BotDockID;
780777

781778
#ifdef EXPERIMENTAL_SPECTRAL_EDITING
782779
if( ndx == SpectralSelectionBarID ){

0 commit comments

Comments
 (0)