Allow to change the `SendNotification` popup window size and icon size

As a Roblox developer, it is currently too hard to … deal with SendNotification, once the popup window can’t be redimensioned to fit the entire text.
For example:
This code:

game.StarterGui:SetCore("SendNotification",
{
	Title = "Aviso";
	Text = ""Todas células estão preenchidas.\nElimine algumas para poder adicionar mais.";";
	Icon = "rbxassetid://5262562371";
	Duration = 10;
	Button1 = "Fecha"
})

… creates this popup warning:

In the popup above, the text is truncated and the icon is oversized (the original icon is smaller)

;----------------------------------------------------------------

If Roblox is able to address this issue, it would improve my development experience because … it would be possible to create larger texts inside the popup window, as well as it would be possible to control the icon size.

5 Likes