summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/CODEOWNERS17
-rw-r--r--scene/gui/line_edit.cpp2
2 files changed, 16 insertions, 3 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index c101a94c88..09ff2454ee 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -2,6 +2,14 @@
# Each line is a file pattern followed by one or more owners.
# Owners can be @users, @org/teams or emails
+# Buildsystem
+
+.* @godotengine/buildsystem
+.github/ @godotengine/buildsystem
+*.py @godotengine/buildsystem
+SConstruct @godotengine/buildsystem
+SCsub @godotengine/buildsystem
+
# Core
/core/ @godotengine/core
@@ -35,6 +43,9 @@ doc_classes/* @godotengine/documentation
/drivers/unix/ @godotengine/_platforms
/drivers/windows/ @godotengine/windows
+## Misc
+/drivers/png/ @godotengine/import
+
# Editor
/editor/*debugger* @godotengine/debugger
@@ -129,9 +140,9 @@ doc_classes/* @godotengine/documentation
# Platform
/platform/android/ @godotengine/android
-/platform/iphone/ @godotengine/iphone
+/platform/iphone/ @godotengine/ios
/platform/javascript/ @godotengine/html5
-/platform/linuxbsd/ @godotengine/linuxbsd
+/platform/linuxbsd/ @godotengine/linux-bsd
/platform/osx/ @godotengine/macos
/platform/uwp/ @godotengine/uwp
/platform/windows/ @godotengine/windows
@@ -145,9 +156,11 @@ doc_classes/* @godotengine/documentation
/scene/debugger/ @godotengine/debugger
/scene/gui/ @godotengine/gui-nodes
/scene/main/ @godotengine/core
+/scene/resources/default_theme/ @godotengine/gui-nodes
/scene/resources/font.* @godotengine/gui-nodes
/scene/resources/text_line.* @godotengine/gui-nodes
/scene/resources/text_paragraph.* @godotengine/gui-nodes
+/scene/resources/visual_shader*.* @godotengine/shaders
# Servers
diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp
index da5389dedf..5bd9259a64 100644
--- a/scene/gui/line_edit.cpp
+++ b/scene/gui/line_edit.cpp
@@ -1587,7 +1587,7 @@ Size2 LineEdit::get_minimum_size() const {
// Minimum size of text.
int em_space_size = font->get_char_size('M', 0, font_size).x;
- min_size.width = get_theme_constant("minimum_character_width'") * em_space_size;
+ min_size.width = get_theme_constant("minimum_character_width") * em_space_size;
if (expand_to_text_length) {
// Add a space because some fonts are too exact, and because cursor needs a bit more when at the end.