From 8d69a804e86285e0022b1fc5dfc922e0ef1e6b9d Mon Sep 17 00:00:00 2001 From: Seth Call Date: Tue, 22 Dec 2015 09:32:22 -0600 Subject: [PATCH] * fix up initial scan info --- .../ConfigureLiveTracksDialog.js.jsx.coffee | 11 ++++++----- .../dialogs/configureLiveTracksDialog.css.scss | 4 ++++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee b/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee index a38d9e7da..c56a2ec70 100644 --- a/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee +++ b/web/app/assets/javascripts/react-components/ConfigureLiveTracksDialog.js.jsx.coffee @@ -63,7 +63,7 @@ ConfigureTracksStore = @ConfigureTracksStore vstDisabled = @state.configureTracks.editingTrack.length == 0 || @state.configureTracks.unscanned if @state.configureTracks.unscanned - initialScan = `SCAN` + initialScan = `

“If you want to use an audio plugin, click the manage audio plugins link above, and then click the scan for new or updated plugins link in the menu.

` for input in @state.configureTracks.musicPorts.inputs @@ -87,10 +87,10 @@ ConfigureTracksStore = @ConfigureTracksStore for plugin in @state.configureTracks.vstPluginList.vsts - if plugin.isInstrument == false - vsts.push(``) - else if plugin.category == 'NONE' + if plugin.category == 'NONE' vsts.push(``) + else if plugin.isInstrument == false + vsts.push(``) if @state.configureTracks.editingTrack.vst? vstAssignedThisTrack = true @@ -115,7 +115,7 @@ ConfigureTracksStore = @ConfigureTracksStore
-

Audio Effects (optional) {initialScan}

+

Audio Effects (optional)

@@ -123,6 +123,7 @@ ConfigureTracksStore = @ConfigureTracksStore
SETTINGS . . .
+ {initialScan} {scan}
` diff --git a/web/app/assets/stylesheets/dialogs/configureLiveTracksDialog.css.scss b/web/app/assets/stylesheets/dialogs/configureLiveTracksDialog.css.scss index a80d77fba..a811d4d6f 100644 --- a/web/app/assets/stylesheets/dialogs/configureLiveTracksDialog.css.scss +++ b/web/app/assets/stylesheets/dialogs/configureLiveTracksDialog.css.scss @@ -22,6 +22,10 @@ position: absolute; right: 60px; } + .initial-scan { + margin-top:20px; + line-height:125%; + } .actions { clear:both; text-align:center;