Skip to content

Commit ade55b2

Browse files
committed
update wording and spacing
1 parent 8130f33 commit ade55b2

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

src/Classes/ItemsTab.lua

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,21 +1173,22 @@ function ItemsTabClass:Draw(viewPort, inputEvents)
11731173
if newItem then
11741174
if newItem:find("{ ", 0, true) then
11751175
local controls = { }
1176-
controls.label = new("LabelControl", nil, {0, 30, 0, 16}, "^7\"Advanced Item Descriptions\" (Ctrl+Alt+c) are unsupported.\n\nIf this is not an advanced item copy paste or if you wish to procced anyway click proceed.\n\nOr you can removed the advanced info from the item and paste as a normal item.")
1177-
controls.close = new("ButtonControl", nil, {-175, 140, 150, 20}, "^7Proceed Anyway", function()
1176+
controls.label = new("LabelControl", nil, {0, 40, 0, 16}, "^7\"Advanced Item Descriptions\" (Ctrl+Alt+c) are unsupported.")
1177+
-- \n\nIf this is not an advanced item copy paste or if you wish to proceed anyway click proceed.\n\nOr you can remove the advanced info from the item and paste as a normal item.
1178+
controls.close = new("ButtonControl", nil, {-175, 90, 150, 20}, "^7Proceed Anyway", function()
11781179
self:CreateDisplayItemFromRaw(newItem, true)
11791180
main:ClosePopup()
11801181
end)
1181-
controls.strip = new("ButtonControl", nil, {0, 140, 150, 20}, "^7Remove Advanced Info", function()
1182+
controls.strip = new("ButtonControl", nil, {0, 90, 150, 20}, "^7Remove Advanced Info", function()
11821183
newItem = itemLib.stripAdvancedCopyPaste(newItem)
11831184
self:CreateDisplayItemFromRaw(newItem, true)
11841185
main:ClosePopup()
11851186
end)
1186-
controls.abort = new("ButtonControl", nil, {175, 140, 150, 20}, "^7Abort", function()
1187+
controls.abort = new("ButtonControl", nil, {175, 90, 150, 20}, "^7Abort", function()
11871188
self:SetDisplayItem()
11881189
main:ClosePopup()
11891190
end)
1190-
main:OpenPopup(570, 170, "Warning", controls)
1191+
main:OpenPopup(560, 120, "Warning", controls)
11911192
else
11921193
self:CreateDisplayItemFromRaw(newItem, true)
11931194
end

0 commit comments

Comments
 (0)