Skip to content

Particle color dropdown has no text #16

@shanept

Description

@shanept

The select element for the particle colors has no actual text for each option.

The following has been extracted from the latest version (1.1.0) via dev tools.

<select id="activate-power-mode.particles.colours.type" class="form-control">
    <option value="cursor" description="Particles will be the colour at the cursor."></option>
    <option value="random" description="Particles will have random colours."></option>
    <option value="fixed" description="Particles will have a fixed colour."></option>
</select>

This renders as follows
screenshot from 2016-11-03 10-20-39

The correct code would be as such:

<select id="activate-power-mode.particles.colours.type" class="form-control">
    <option value="cursor">Particles will be the colour at the cursor.</option>
    <option value="random">Particles will have random colours.</option>
    <option value="fixed">Particles will have a fixed colour.</option>
</select>

And would result in the following:
screenshot from 2016-11-03 10-23-08

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions