mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
Fix display of unicode operators in RelationalOperatorField
This commit is contained in:
@@ -31,12 +31,9 @@ export default class RelationalOperatorField extends Component<ParameterFieldPro
|
||||
<SelectOption value="=" primaryText={t`= (equal to)`} />
|
||||
<SelectOption value="<" primaryText={t`< (less than)`} />
|
||||
<SelectOption value=">" primaryText={t`> (greater than)`} />
|
||||
<SelectOption value="<=" primaryText={t`\u2264 (less or equal to)`} />
|
||||
<SelectOption
|
||||
value=">="
|
||||
primaryText={t`\u2265 (greater or equal to)`}
|
||||
/>
|
||||
<SelectOption value="!=" primaryText={t`\u2260 (not equal to)`} />
|
||||
<SelectOption value="<=" primaryText={t`≤ (less or equal to)`} />
|
||||
<SelectOption value=">=" primaryText={t`≥ (greater or equal to)`} />
|
||||
<SelectOption value="!=" primaryText={t`≠ (not equal to)`} />
|
||||
</SelectField>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user