From eca984e79d7fcf66facdeede773cdf7a0f077f05 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Tue, 1 Aug 2023 15:53:32 +0200 Subject: [PATCH] UI: make external text editor presets upper case The presets for external text editors introduced in e16ec95a16 are stored in Python files. The names of these files are used to generate the UI name, and are case-sensitive. They are currently lower case, but should be title case like other presets. This commit renames the files so they are title case. Pull Request: https://projects.blender.org/blender/blender/pulls/110642 --- scripts/presets/text_editor/{internal.py => Internal.py} | 0 .../text_editor/{visual_studio_code.py => Visual_Studio_Code.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename scripts/presets/text_editor/{internal.py => Internal.py} (100%) rename scripts/presets/text_editor/{visual_studio_code.py => Visual_Studio_Code.py} (100%) diff --git a/scripts/presets/text_editor/internal.py b/scripts/presets/text_editor/Internal.py similarity index 100% rename from scripts/presets/text_editor/internal.py rename to scripts/presets/text_editor/Internal.py diff --git a/scripts/presets/text_editor/visual_studio_code.py b/scripts/presets/text_editor/Visual_Studio_Code.py similarity index 100% rename from scripts/presets/text_editor/visual_studio_code.py rename to scripts/presets/text_editor/Visual_Studio_Code.py