morinted / Bozzy

Capstone project for fourth year software engineering
GNU General Public License v3.0
2 stars 3 forks source link

RFC @morinted and @germanika #10

Closed sofa13 closed 8 years ago

sofa13 commented 8 years ago

The following is my attempt at implementing filter on dictionary. For simple testing purposes, I've set it up so that when you run the application, go to the translation filter box and hit enter, it filters all entries (ie no entries should appear in the table) and if you hit enter again, it should unfilter all entries (ie all entries should appear in the table). Right now the dictionary list itself is behaving correctly, since the entries in dictionary go to 0 upon filtering all, and return to original length upon filtering none. This outcome can be seen in the console window from using println() as a form of debugging every time you hit enter...

But it's not updating in the table.

My best guess the table is using a different instance of dictionary. thoughts?

@morinted and @germanika