Skip to content

Commit

Permalink
Merge branch 'fix-notif-widths' of https://github.com/boatbomber/rojo
Browse files Browse the repository at this point in the history
…into headless-api
  • Loading branch information
boatbomber committed Dec 24, 2024
2 parents 92a3044 + c45271b commit 1ac8b9d
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions plugin/src/App/Notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function Notification:render()
end

local paddingY, logoSize = 20, 32
local actionsY = if self.props.actions then 35 else 0
local actionsY = if self.props.actions then 37 else 0
local thirdPartyBounds = if self.props.thirdParty
then getTextBoundsAsync(thirdPartyName, theme.Font.Main, theme.TextSize.Body, math.huge)
+ (
Expand All @@ -129,11 +129,8 @@ function Notification:render()
)
else Vector2.zero
local textXSpace = math.max(250, thirdPartyBounds.X, buttonsX) + 35
local textBounds = Vector2.new(
textXSpace,
getTextBoundsAsync(self.props.text, theme.Font.Main, theme.TextSize.Body, textXSpace).Y
)
local contentX = math.max(textBounds.X, buttonsX, thirdPartyBounds.X)
local textBounds = getTextBoundsAsync(self.props.text, theme.Font.Main, theme.TextSize.Body, textXSpace)
local contentX = math.max(textBounds.X, thirdPartyBounds.X, buttonsX)

local size = self.binding:map(function(value)
return UDim2.fromOffset(
Expand Down Expand Up @@ -210,10 +207,10 @@ function Notification:render()
TextColor3 = theme.Notification.InfoColor,
TextTransparency = transparency,
TextXAlignment = Enum.TextXAlignment.Left,
TextYAlignment = Enum.TextYAlignment.Top,
TextYAlignment = Enum.TextYAlignment.Center,
TextWrapped = true,

Size = UDim2.new(1, -35, 1, -actionsY - thirdPartyBounds.Y),
Size = UDim2.new(0, textBounds.X, 1, -actionsY - thirdPartyBounds.Y),
Position = UDim2.fromOffset(35, thirdPartyBounds.Y),

LayoutOrder = 1,
Expand Down

0 comments on commit 1ac8b9d

Please sign in to comment.