Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Content store: Hide navigation buttons when there's no packages
  • Loading branch information
ClobberXD authored and rubenwardy committed Nov 26, 2018
1 parent d83fe16 commit 8ba64e4
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions builtin/mainmenu/dlg_contentstore.lua
Expand Up @@ -357,7 +357,7 @@ function store.get_formspec()
end

local formspec
if #store.packages ~= 0 then
if #store.packages > 0 then
formspec = {
"size[12,7;true]",
"position[0.5,0.55]",
Expand All @@ -371,12 +371,30 @@ function store.get_formspec()
";", filter_type, "]",
-- "textlist[0,1;2.4,5.6;a;",
-- table.concat(taglist, ","), "]",

-- Page nav buttons
"container[0,",
num_per_page + 1.5, "]",
"button[-0.1,0;3,1;back;",
fgettext("Back to Main Menu"), "]",
"button[7.1,0;1,1;pstart;<<]",
"button[8.1,0;1,1;pback;<]",
"label[9.2,0.2;",
tonumber(cur_page), " / ",
tonumber(pages), "]",
"button[10.1,0;1,1;pnext;>]",
"button[11.1,0;1,1;pend;>>]",
"container_end[]",
}
else
formspec = {
"size[12,7;true]",
"position[0.5,0.55]",
"label[4,3;No packages could be retrieved]",
"button[-0.1,",
num_per_page + 1.5,
";3,1;back;",
fgettext("Back to Main Menu"), "]",
}
end

Expand Down Expand Up @@ -433,24 +451,6 @@ function store.get_formspec()
formspec[#formspec + 1] = "container_end[]"
end

formspec[#formspec + 1] = "container[0,"
formspec[#formspec + 1] = num_per_page + 1.5
formspec[#formspec + 1] = "]"
formspec[#formspec + 1] = "button[-0.1,0;3,1;back;"
formspec[#formspec + 1] = fgettext("Back to Main Menu")
formspec[#formspec + 1] = "]"
formspec[#formspec + 1] = "button[7.1,0;1,1;pstart;<<]"
formspec[#formspec + 1] = "button[8.1,0;1,1;pback;<]"
formspec[#formspec + 1] = "label[9.2,0.2;"
formspec[#formspec + 1] = tonumber(cur_page)
formspec[#formspec + 1] = " / "
formspec[#formspec + 1] = tonumber(pages)
formspec[#formspec + 1] = "]"
formspec[#formspec + 1] = "button[10.1,0;1,1;pnext;>]"
formspec[#formspec + 1] = "button[11.1,0;1,1;pend;>>]"
formspec[#formspec + 1] = "container_end[]"

formspec[#formspec + 1] = "]"
return table.concat(formspec, "")
end

Expand Down

0 comments on commit 8ba64e4

Please sign in to comment.