This commit is contained in:
2025-10-12 14:47:14 +02:00
parent c9a404d634
commit 9917d724a3
13 changed files with 164 additions and 37 deletions

View File

@@ -12,7 +12,7 @@ from ..utils.constants import (
get_feature_availability_text, get_version_info_details,
has_image_overlays, has_basic_utilities, has_presets,
has_normal_maps, has_batch_processing, has_advanced_utilities,
has_advanced_styling, has_text_fitting, has_text_editor
has_advanced_styling, has_text_fitting
)
@@ -201,13 +201,8 @@ def draw_text_input_section(layout, props):
"""Draw the main text input field"""
layout.prop(props, "text", text="")
# Add multiline text editor button
row = layout.row()
if has_text_editor():
row.operator("text_texture.edit_multiline_text", text="Edit Multiline Text", icon='TEXT')
else:
row.enabled = False
row.operator("text_texture.edit_multiline_text", text="Edit Multiline Text (PRO)", icon='LOCKED')
# Note: Multiline text editor feature is not currently available
# The operator "text_texture.edit_text" does not exist in the codebase
def draw_font_dropdown_section(layout, props):
pass