Fix white on white text display

Julien LepillerFri Jun 05 22:57:06+0200 2020

b8b56e0

Fix white on white text display

CHANGELOG.md

1313
* Fix a crash on notification on older devices, caused by the use of a vector
1414
  icon in the notification, which was not supported.
1515
* Fix default radical button size which was too small.
16+
* Fix white on white text display on some older devices.
1617
1718
### Features
1819

app/src/main/java/eu/lepiller/nani/DictionaryActivity.java

4545
        final SwipeRefreshLayout refresher = findViewById(R.id.dictionary_refresh_layout);
4646
4747
        dictionaries = DictionaryFactory.getDictionnaries(getApplicationContext());
48-
        adapter = new DictionariesAdapter(getApplicationContext(), dictionaries);
48+
        adapter = new DictionariesAdapter(this, dictionaries);
4949
        list_view.setAdapter(adapter);
5050
5151
        if(dictionaries.size() == 0) {