Skip to content

Commit

Permalink
remove redundant display of command description
Browse files Browse the repository at this point in the history
  • Loading branch information
joswig committed Feb 4, 2025
1 parent bad0bbc commit 72d1616
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/components/sequencing/CommandPanel/SelectedCommand.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import type { ArgTextDef, TimeTagInfo } from '../../../types/sequencing';
import type { CommandInfoMapper } from '../../../utilities/codemirror/commandInfoMapper';
import { tooltip } from '../../../utilities/tooltip';
import Collapse from '../../Collapse.svelte';
import AddMissingArgsButton from '../form/AddMissingArgsButton.svelte';
import ArgEditor from '../form/ArgEditor.svelte';
import StringEditor from '../form/StringEditor.svelte';
Expand Down Expand Up @@ -121,10 +120,6 @@
{#if !!commandNode}
{#if commandInfoMapper.nodeTypeHasArguments(commandNode)}
{#if !!commandDef}
<fieldset>
<Collapse headerHeight={24} title={commandDef.stem} padContent={false}>{commandDef.description}</Collapse>
</fieldset>

{#each editorArgInfoArray as argInfo}
<ArgEditor
{argInfo}
Expand Down

0 comments on commit 72d1616

Please sign in to comment.