Skip to content

Commit

Permalink
Fix modstore pagecount
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekdohibs authored and PilzAdam committed Aug 16, 2013
1 parent a2380bf commit 4095e8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions builtin/modstore.lua
Expand Up @@ -116,7 +116,7 @@ function modstore.handle_buttons(current_tab,fields)

if fields["btn_modstore_page_down"] then
if modstore.current_list ~= nil and
modstore.current_list.page <modstore.current_list.pagecount then
modstore.current_list.page <modstore.current_list.pagecount-1 then
modstore.current_list.page = modstore.current_list.page +1
end
end
Expand Down Expand Up @@ -169,10 +169,10 @@ function modstore.update_modlist()

if modstore.modlist_unsorted.data ~= nil then
modstore.modlist_unsorted.pagecount =
math.floor((#modstore.modlist_unsorted.data / modstore.modsperpage))
math.ceil((#modstore.modlist_unsorted.data / modstore.modsperpage))
else
modstore.modlist_unsorted.data = {}
modstore.modlist_unsorted.pagecount = 0
modstore.modlist_unsorted.pagecount = 1
end
modstore.modlist_unsorted.page = 0
end
Expand All @@ -181,11 +181,11 @@ end
function modstore.getmodlist(list)
local retval = ""
retval = retval .. "label[10,-0.4;Page " .. (list.page +1) ..
" of " .. (list.pagecount +1) .. "]"
" of " .. list.pagecount .. "]"

retval = retval .. "button[11.6,-0.1;0.5,0.5;btn_modstore_page_up;^]"
retval = retval .. "box[11.6,0.35;0.28,8.6;000000]"
local scrollbarpos = 0.35 + (8.1/list.pagecount) * list.page
local scrollbarpos = 0.35 + (8.1/(list.pagecount-1)) * list.page
retval = retval .. "box[11.6," ..scrollbarpos .. ";0.28,0.5;32CD32]"
retval = retval .. "button[11.6,9.0;0.5,0.5;btn_modstore_page_down;v]"

Expand Down

0 comments on commit 4095e8f

Please sign in to comment.