Page 1 of 1

Loveframes checkboxes not allowing other checkboxes to be checked?

Posted: Sun Feb 21, 2021 5:46 am
by PenguinKing
Summary:
Essentially; I'm trying to create a bunch of textboxes with the loveframes library and for some reason whenever I click one of the checkboxes, I can no-longer click the other three.

Problem:
My problem is the fact that the clicked checkbox will un-check and check once more, however; I can no-longer click on the other check-boxes within the frame for some reason.

Code:

Code: Select all

for _,v in ipairs(RecipeMaker.ingredientCheckboxes) do
     if v:GetHover() then
          v:SetChecked(not v:GetChecked())
      end
end
RecipeMaker.ingredientCheckboxes is a table that contains all of the created ingredient textboxes

Re: Loveframes checkboxes not allowing other checkboxes to be checked?

Posted: Sun Feb 21, 2021 8:55 pm
by darkfrei

Re: Loveframes checkboxes not allowing other checkboxes to be checked?

Posted: Mon Feb 22, 2021 1:14 am
by PenguinKing
darkfrei wrote: Sun Feb 21, 2021 8:55 pm > loveframes library
This one?
https://love2d.org/forums/viewtopic.php?f=5&t=9116
yes.