Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed soma clicking #3141

Merged
merged 11 commits into from
Sep 12, 2018
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.md).

### Changed

- Renamed "Soma Clicking" to "Single-Node-Tree Mode". [#3141](https://github.com/scalableminds/webknossos/pull/3141/files)
- The fallback segmentation layer attribute of volume tracings is now persisted to NML/ZIP files. Upon re-upload, only volume tracings with this attribute will show a fallback layer. Use `tools/volumeAddFallbackLayer.py` to add this attribute to existing volume tracings. [#3088](https://github.com/scalableminds/webknossos/pull/3088)
- When splitting a tree, the split part that contains the initial node will now keep the original tree name and id. [#3145](https://github.com/scalableminds/webknossos/pull/3145)
- The welcome header will now also show on the default page if there are no existing organisations. [#3133](https://github.com/scalableminds/webknossos/pull/3133)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class TaskTypeCreateView extends React.PureComponent<Props, State> {
<FormItem label="Settings">
{getFieldDecorator("settings.somaClickingAllowed", {
valuePropName: "checked",
})(<Checkbox>Allow Soma clicking</Checkbox>)}
})(<Checkbox>Allow Single-node-tree mode (&quot;Soma clicking&quot;)</Checkbox>)}
</FormItem>

<FormItem>
Expand Down
6 changes: 5 additions & 1 deletion app/assets/javascripts/admin/tasktype/task_type_list_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,11 @@ class TaskTypeListView extends React.PureComponent<Props, State> {
if (settings.branchPointsAllowed)
elements.push(<Tag key="branchPointsAllowed">Branchpoints</Tag>);
if (settings.somaClickingAllowed)
elements.push(<Tag key="somaClickingAllowed">Soma clicking</Tag>);
elements.push(
<Tag key="somaClickingAllowed">
Allow Single-node-tree mode (&quot;Soma clicking&quot;)
</Tag>,
);
return elements;
}}
width={100}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class UserSettingsView extends PureComponent<UserSettingsViewProps> {
onChange={this.onChangeUser.overrideNodeRadius}
/>
<SwitchSetting
label="Soma Clicking"
label="Single-node-tree mode (&quot;Soma clicking&quot;)"
value={this.props.userConfiguration.newNodeNewTree}
onChange={this.onChangeUser.newNodeNewTree}
/>
Expand Down