diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-24 15:48:01 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-24 17:08:26 +0200 |
commit | f11e8d033d47acd42a886ef62849971c761edd62 (patch) | |
tree | fd7872719f3c9532467286aa84f47fd2ed0ea657 /doc/classes | |
parent | e78dc83ee8fc327a4586db0dde576bbefc2b2f8d (diff) | |
download | redot-engine-f11e8d033d47acd42a886ef62849971c761edd62.tar.gz |
Remove editor pseudolocalization debug feature
We've seen multiple users enable it by mistake and get utterly confused,
reporting as a bug that the interface text is garbled.
On the other hand we haven't really seen much use of the feature by editor
UI developers, so we can likely simply remove it.
If there's a need eventually, we can re-add it as a command line option
(which is also better than an editor setting as one would typically want
to toggle it during development).
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorSettings.xml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/classes/EditorSettings.xml b/doc/classes/EditorSettings.xml index 90b8d07592..aa1ac566ef 100644 --- a/doc/classes/EditorSettings.xml +++ b/doc/classes/EditorSettings.xml @@ -623,10 +623,6 @@ The custom editor scale factor to use. This can be used for displays with very high DPI where a scale factor of 200% is not sufficient. [b]Note:[/b] Only effective if [member interface/editor/display_scale] is set to [b]Custom[/b]. </member> - <member name="interface/editor/debug/enable_pseudolocalization" type="bool" setter="" getter=""> - If [code]true[/code], lengthens the editor's localizable strings and replaces their characters with accented variants. This allows spotting non-localizable strings easily, while also ensuring the UI layout doesn't break when strings are made longer (as many languages require strings to be longer). - This is a debugging feature and should only be enabled when working on the editor itself. - </member> <member name="interface/editor/display_scale" type="int" setter="" getter=""> The display scale factor to use for the editor interface. Higher values are more suited to hiDPI/Retina displays. If set to [b]Auto[/b], the editor scale is automatically determined based on the screen resolution and reported display DPI. This heuristic is not always ideal, which means you can get better results by setting the editor scale manually. |