AndTheDaysGoBy / ForFun

Just a repo where I post some things that have come to mind, and I've attempted to create.
0 stars 0 forks source link

Recycling Issue in Pull #5

Closed AndTheDaysGoBy closed 6 years ago

AndTheDaysGoBy commented 6 years ago

It appears recycling wont work due to the usage of an external pointer, e.g. JOBS$applied <<- gtkCheckButtonNewWithLabel("Applied", show = TRUE) JOBS[JOBS$id %in% APPLIED,]$applied <<- createCheckButton("Applied", active=T)

So, object duplication will have to be done manually, no clean code(?)

AndTheDaysGoBy commented 6 years ago

It might be possible using replicate().

AndTheDaysGoBy commented 6 years ago

Fixed by recreating each object when needed.