cache drawable in dictionaries should not be static

Julien LepillerThu Jun 11 04:21:54+0200 2020

e460fc1

cache drawable in dictionaries should not be static

app/src/main/java/eu/lepiller/nani/dictionary/Dictionary.java

2828
    private String sha256;
2929
    private File file, temporaryFile;
3030
31-
    private static Drawable drawable=null, newDrawable=null;
31+
    private Drawable drawable=null, newDrawable=null;
3232
3333
    Dictionary(String name, String description, String fullDescription, File cacheDir, int fileSize, int entries, String hash) {
3434
        this.name = name;