Skip to content

Commit

Permalink
it really is the little things in life
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleretters committed Sep 12, 2020
1 parent c48d9d8 commit 04be1f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/graphics.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ function graphics:structure_palette_analysis(s)
graphics:rect(0, y-1, 10, 9, 0)
graphics:rect(120, y-1, 10, 9, 0)

-- pop ellipses to the left
-- pop arrow to the left
if s > threshold then
graphics:text_left(0, y+7, "<", 5)
end

-- pop ellipses to the right
if s < #items then
-- pop arrow to the right
if s < #items and #items > threshold then
graphics:text_right(128, y+7, ">", 5)
end

Expand Down

0 comments on commit 04be1f0

Please sign in to comment.