summaryrefslogtreecommitdiff
path: root/Scripts/Terminal/OutputBlock.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/Terminal/OutputBlock.cs')
-rw-r--r--Scripts/Terminal/OutputBlock.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Scripts/Terminal/OutputBlock.cs b/Scripts/Terminal/OutputBlock.cs
index 08b2ab2..4512446 100644
--- a/Scripts/Terminal/OutputBlock.cs
+++ b/Scripts/Terminal/OutputBlock.cs
@@ -3,7 +3,7 @@ using Godot;
namespace Texty.Scripts.Terminal
{
[Tool]
- public class OutputBlock : MarginContainer
+ public partial class OutputBlock : MarginContainer
{
private string _content = "";
@@ -12,12 +12,12 @@ namespace Texty.Scripts.Terminal
[Export(PropertyHint.MultilineText)]
public string Content
{
- get => ContentLabel?.BbcodeText ?? "";
+ get => ContentLabel?.Text ?? "";
set
{
_content = value;
if (ContentLabel != null)
- ContentLabel.BbcodeText = GodotSharp.Singleton.Tr(_content);
+ ContentLabel.Text = GodotSharp.Singleton.Tr(_content);
}
}