Fix not to add a new line to the content

This commit is contained in:
Ilia Ross
2025-07-23 23:44:36 +03:00
parent da5b814d2b
commit 63abfbfe87

View File

@@ -3410,7 +3410,7 @@ sub ui_tag_content
return theme_ui_tag_content(@_) if (defined(&theme_ui_tag_content));
my ($content) = @_;
my $rv;
$rv = $content."\n" if (defined($content));
$rv = $content if (defined($content));
return $rv;
}