1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:27:43 +00:00

Presenter: Fix unintentional U+00A0 codepoint in text

Found using git grep -FIn $'\u00a0'

I just got bit by this type of bug in a different project, and was
wondering whether Serenity has this problem, too. See also:
https://dhwthompson.com/2019/my-favourite-git-commit
This commit is contained in:
Ben Wiederhake 2023-02-16 22:47:58 +01:00 committed by Sam Atkins
parent bcfbe0fbf7
commit e3f3470a6c

View file

@ -46,7 +46,7 @@ The slides array contains a list of slide objects, their JSON order determines t
Most slide objects are graphical objects of one of the pre-defined types. All graphical objects, like GUI widgets, have a bounding box rectangle which determines their position and size. Objects choose which frames they appear on.
In the file format, slide objects are JSON objects with the following basic properties:
In the file format, slide objects are JSON objects with the following basic properties:
- `type`: (string enum) Specifies the type of the slide object and what other properties the object may have, see below.
- `rect`: (4-element array of integers: `[left, top, width, height]`, optional) Specifies the bounding box of the object. Is mandatory for most types.