@@ -182,42 +182,46 @@ export function DualOutputDeveloperSettings(p: { collection?: string }) {
182182 </ span >
183183 < div >
184184 < h4 > { $t ( 'Convert to Vanilla Scene' ) } </ h4 >
185- < Button
186- className = "button--soft-warning"
187- style = { { marginRight : '16px' } }
188- onClick = { ( ) => convertDualOutputCollection ( ) }
189- disabled = { busy }
190- >
191- { $t ( 'Convert' ) }
192- </ Button >
193- { ! p . collection && (
185+ < div style = { { display : 'flex' , justifyContent : 'space-evenly' , paddingBottom : '16px' } } >
194186 < Button
195187 className = "button--soft-warning"
196- onClick = { ( ) => convertDualOutputCollection ( false , true ) }
188+ style = { { marginRight : '16px' } }
189+ onClick = { ( ) => convertDualOutputCollection ( ) }
197190 disabled = { busy }
198191 >
199- { $t ( 'Convert and Export Overlay ' ) }
192+ { $t ( 'Convert' ) }
200193 </ Button >
201- ) }
194+ { ! p . collection && (
195+ < Button
196+ className = "button--soft-warning"
197+ onClick = { ( ) => convertDualOutputCollection ( false , true ) }
198+ disabled = { busy }
199+ >
200+ { $t ( 'Convert and Export Overlay' ) }
201+ </ Button >
202+ ) }
203+ </ div >
202204 </ div >
203205 { ! p . collection && (
204206 < div style = { { marginTop : '10px' } } >
205207 < h4 > { $t ( 'Assign Vertical Sources to Horizontal Display' ) } </ h4 >
206- < Button
207- className = "button--soft-warning"
208- style = { { marginRight : '16px' } }
209- onClick = { ( ) => convertDualOutputCollection ( true ) }
210- disabled = { busy }
211- >
212- { $t ( 'Assign' ) }
213- </ Button >
214- < Button
215- className = "button--soft-warning"
216- onClick = { ( ) => convertDualOutputCollection ( true , true ) }
217- disabled = { busy }
218- >
219- { $t ( 'Assign and Export Overlay' ) }
220- </ Button >
208+ < div style = { { display : 'flex' , justifyContent : 'space-evenly' , paddingBottom : '16px' } } >
209+ < Button
210+ className = "button--soft-warning"
211+ style = { { marginRight : '16px' } }
212+ onClick = { ( ) => convertDualOutputCollection ( true ) }
213+ disabled = { busy }
214+ >
215+ { $t ( 'Assign' ) }
216+ </ Button >
217+ < Button
218+ className = "button--soft-warning"
219+ onClick = { ( ) => convertDualOutputCollection ( true , true ) }
220+ disabled = { busy }
221+ >
222+ { $t ( 'Assign and Export Overlay' ) }
223+ </ Button >
224+ </ div >
221225 </ div >
222226 ) }
223227 < div style = { { color : error ? 'red' : 'var(--teal)' } } > { message } </ div >
@@ -322,14 +326,16 @@ function AppPlatformDeveloperSettings() {
322326 < p style = { { wordWrap : 'break-word' } } > { loadedUnpackedApp . appPath } </ p >
323327 < h4 > { $t ( 'Token' ) } </ h4 >
324328 < p style = { { wordWrap : 'break-word' } } > { loadedUnpackedApp . appToken } </ p >
325- < Button onClick = { reloadApp } type = "primary" disabled = { loading } >
326- { $t ( 'Reload' ) }
327- { loading && < i className = "fa fa-spinner fa-pulse" /> }
328- </ Button >
329- < Button onClick = { unloadApp } type = "primary" disabled = { loading } >
330- { $t ( 'Unload' ) }
331- { loading && < i className = "fa fa-spinner fa-pulse" /> }
332- </ Button >
329+ < div style = { { display : 'flex' , justifyContent : 'space-evenly' , paddingBottom : '16px' } } >
330+ < Button onClick = { reloadApp } type = "primary" disabled = { loading } >
331+ { $t ( 'Reload' ) }
332+ { loading && < i className = "fa fa-spinner fa-pulse" /> }
333+ </ Button >
334+ < Button onClick = { unloadApp } type = "primary" disabled = { loading } >
335+ { $t ( 'Unload' ) }
336+ { loading && < i className = "fa fa-spinner fa-pulse" /> }
337+ </ Button >
338+ </ div >
333339 </ >
334340 ) }
335341 { ! loadedUnpackedApp && (
0 commit comments