Fix claude settings

This commit is contained in:
2026-02-17 11:51:58 -05:00
parent 55ad662d3f
commit 9b1dd00a45
3 changed files with 6 additions and 7 deletions

View File

@@ -2,9 +2,8 @@
"permissions": { "permissions": {
"allow": [ "allow": [
"WebFetch(domain:dev.epicgames.com)", "WebFetch(domain:dev.epicgames.com)",
"WebSearch",
"WebFetch(domain:github.com)", "WebFetch(domain:github.com)",
"Bash(chmod:*)" "Bash(grep:*)"
], ],
"deny": [ "deny": [
"Bash(git commit *)", "Bash(git commit *)",

Binary file not shown.

View File

@@ -53,13 +53,13 @@ FString FlxBlueprintExporter::FormatPinType(UEdGraphPin* Pin)
FString FlxBlueprintExporter::FormatNodeBaseName(UEdGraphNode* Node) FString FlxBlueprintExporter::FormatNodeBaseName(UEdGraphNode* Node)
{ {
FString Title = Node->GetNodeTitle(ENodeTitleType::ListView).ToString(); FString Title = Node->GetNodeTitle(ENodeTitleType::FullTitle).ToString();
Title = FName::NameToDisplayString(*Title, false); int32 NewlineIdx;
if (Title.FindChar(TEXT('\n'), NewlineIdx))
Title.LeftInline(NewlineIdx);
return SanitizeName(Title); return SanitizeName(Title);
} }
UEdGraphPin* FlxBlueprintExporter::GetLinkedTo(UEdGraphPin* Pin) UEdGraphPin* FlxBlueprintExporter::GetLinkedTo(UEdGraphPin* Pin)
{ {
while (true) while (true)