Skip to content

Commit

Permalink
Improve notification layout
Browse files Browse the repository at this point in the history
  • Loading branch information
boatbomber committed Dec 24, 2024
1 parent b7d3394 commit c45271b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions plugin/src/App/Notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,9 @@ 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 textXSpace = math.max(250, buttonsX) + 35
local textBounds = Vector2.new(
textXSpace,
getTextBoundsAsync(self.props.text, theme.Font.Main, theme.TextSize.Body, textXSpace).Y
)
local textBounds = getTextBoundsAsync(self.props.text, theme.Font.Main, theme.TextSize.Body, textXSpace)
local contentX = math.max(textBounds.X, buttonsX)

local size = self.binding:map(function(value)
Expand Down Expand Up @@ -162,10 +159,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),
Size = UDim2.new(0, textBounds.X, 1, -actionsY),
Position = UDim2.fromOffset(35, 0),

LayoutOrder = 1,
Expand Down

0 comments on commit c45271b

Please sign in to comment.