Skip to content

Commit

Permalink
Fix description wrapping in browse online content
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Apr 25, 2018
1 parent 454f80a commit f23dd62
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions builtin/mainmenu/dlg_contentstore.lua
Expand Up @@ -119,7 +119,7 @@ function package_dialog.get_formspec()
local formspec = { local formspec = {
"size[8,4;true]", "size[8,4;true]",
"label[2.5,0.2;", core.formspec_escape(package.title), "]", "label[2.5,0.2;", core.formspec_escape(package.title), "]",
"label[0,1;", core.formspec_escape(package.short_description), "]", "textarea[0.2,1;8,3;;;", core.formspec_escape(package.short_description), "]",
"button[0,0;2,1;back;", fgettext("Back"), "]", "button[0,0;2,1;back;", fgettext("Back"), "]",
"button[6,0;2,1;install;", fgettext("Install"), "]", "button[6,0;2,1;install;", fgettext("Install"), "]",
} }
Expand Down Expand Up @@ -290,18 +290,14 @@ function store.get_formspec()
formspec[#formspec + 1] = "]" formspec[#formspec + 1] = "]"


-- title -- title
formspec[#formspec + 1] = "label[1,0;" formspec[#formspec + 1] = "label[1,-0.1;"
formspec[#formspec + 1] = core.formspec_escape(package.title .. formspec[#formspec + 1] = core.formspec_escape(package.title ..
" by " .. package.author) " by " .. package.author)
formspec[#formspec + 1] = "]" formspec[#formspec + 1] = "]"


-- description -- description
local short = package.short_description formspec[#formspec + 1] = "textarea[1.25,0.3;5,1;;;"
if #short > 60 then formspec[#formspec + 1] = core.formspec_escape(package.short_description)
short = short:sub(1, 59) .. ""
end
formspec[#formspec + 1] = "label[1,0.3;"
formspec[#formspec + 1] = core.formspec_escape(short)
formspec[#formspec + 1] = "]" formspec[#formspec + 1] = "]"


-- buttons -- buttons
Expand Down

0 comments on commit f23dd62

Please sign in to comment.