Few Changes to how it looks

This commit is contained in:
Cooldude2606
2018-01-01 15:26:35 +00:00
parent d35fda6803
commit 27732a28bb

View File

@@ -119,7 +119,16 @@ Gui.left.add{
caption='utility/not_enough_repair_packs_icon', caption='utility/not_enough_repair_packs_icon',
tooltip={'tasklist.tooltip'}, tooltip={'tasklist.tooltip'},
draw=function(frame) draw=function(frame)
frame.caption = {'tasklist.name'} frame.caption = ''
local title = frame.add{
type='flow',
direction='horizontal'
}
title.add{
type='label',
caption={'tasklist.name'},
style='caption_label'
}
local data = _global() local data = _global()
local player = Game.get_player(frame.player_index) local player = Game.get_player(frame.player_index)
local rank = Ranking.get_rank(player) local rank = Ranking.get_rank(player)
@@ -148,24 +157,19 @@ Gui.left.add{
} }
if rank:allowed('edit-tasklist') then if rank:allowed('edit-tasklist') then
_edit(button_flow) _edit(button_flow)
local element = remove:draw(button_flow)
element.style.height = 20
element.style.width = 20
local _element = add:draw(button_flow)
_element.style.height = 20
_element.style.width = 20
if data._edit[player.index]._editing[i] then if data._edit[player.index]._editing[i] then
local element = remove:draw(button_flow)
element.style.height = 30 element.style.height = 30
element.style.width = 30 element.style.width = 30
local _element = add:draw(button_flow)
_element.style.height = 30 _element.style.height = 30
_element.style.width = 30 _element.style.width = 30
end end
end end
end end
if #_tasks(player) == 0 then if rank:allowed('edit-tasklist') then
frame.style.visible = rank:allowed('edit-tasklist') local flow = title.add{
local flow = frame.add{ name=#_tasks(player),
name=0,
type='flow', type='flow',
direction='horizontal' direction='horizontal'
} }
@@ -173,8 +177,11 @@ Gui.left.add{
type='flow', type='flow',
direction='horizontal' direction='horizontal'
} }
add:draw(button_flow) local element = add:draw(button_flow)
element.style.height = 20
element.style.width = 20
end end
if #_tasks(player) == 0 and not rank:allowed('edit-tasklist') then frame.style.visible = false end
end, end,
can_open=function(player) can_open=function(player)
local rank = Ranking.get_rank(player) local rank = Ranking.get_rank(player)