modifications to the close button for longer named songs
This commit is contained in:
parent
db30ec58d0
commit
954b839efa
|
@ -110,7 +110,7 @@ function renderEjectButton() -- Renders the Eject button
|
|||
end
|
||||
|
||||
function renderCloseButton() -- Renders the Close button
|
||||
term.setCursorPos(width, 1)
|
||||
term.setCursorPos(width - 1, 1)
|
||||
term.setTextColor(textColor)
|
||||
term.setBackgroundColor(backgroundColor)
|
||||
term.write(" x")
|
||||
|
@ -142,6 +142,9 @@ status = defaultStatus -- Setting the value to the default
|
|||
|
||||
while true do
|
||||
statusRender(status) -- Renders the status
|
||||
if term.isColour() then -- Renders the close button (if the song title is too long, the close button kind of disappears
|
||||
renderCloseButton()
|
||||
end
|
||||
local eventData = {os.pullEvent()}
|
||||
local event = eventData[1]
|
||||
|
||||
|
|
Loading…
Reference in a new issue