diff --git a/sys/apps/Files.lua b/sys/apps/Files.lua index fa4493a..24f8c78 100644 --- a/sys/apps/Files.lua +++ b/sys/apps/Files.lua @@ -60,7 +60,7 @@ local Browser = UI.Page { { text = 'Hidden ^h', event = 'toggle_hidden' }, { text = 'Dir Size ^s', event = 'toggle_dirSize' }, } }, - { text = '\206', + { text = '\187', x = -3, dropdown = { { text = 'Associations', event = 'associate' }, diff --git a/sys/apps/Network.lua b/sys/apps/Network.lua index 39cb2ce..85f6502 100644 --- a/sys/apps/Network.lua +++ b/sys/apps/Network.lua @@ -45,7 +45,7 @@ local page = UI.Page { } }, { text = 'Help', event = 'help', noCheck = true }, { - text = '\206', + text = '\187', x = -3, dropdown = { { text = 'Show all', event = 'show_all', noCheck = true }, diff --git a/sys/extensions/6.tl3.lua b/sys/extensions/6.tl3.lua index 33006b4..fea55e2 100644 --- a/sys/extensions/6.tl3.lua +++ b/sys/extensions/6.tl3.lua @@ -802,7 +802,7 @@ function turtle.has(item, count) return slot and slot.count >= (count or 1) end local slot = turtle.getSlot(item) - return slot and slot.count > 0 + return slot and slot.count >= (count or 1) end function turtle.getFilledSlots(startSlot)