Merge pull request #1512 from cmmoran/feature/1483_long_messages

math is hard sometimes?
This commit is contained in:
Chris Moran
2020-06-30 06:47:50 -04:00
committed by GitHub

View File

@@ -970,7 +970,7 @@ const buildMessageModel = function(msg, actors) {
msg.message,
Math.max(
msgDims.width + 2 * conf.wrapPadding,
boundedWidth - 2 * conf.wrapPadding,
boundedWidth + 2 * conf.wrapPadding,
conf.width
),
conf.messageFont()
@@ -979,7 +979,7 @@ const buildMessageModel = function(msg, actors) {
return {
width: Math.max(
msgDims.width + 2 * conf.wrapPadding,
boundedWidth - 2 * conf.wrapPadding,
boundedWidth + 2 * conf.wrapPadding,
conf.width
),
height: 0,