GithubWidget icon indicating copy to clipboard operation
GithubWidget copied to clipboard

Colors not showing in graph on widget

Open kevinhinterlong opened this issue 8 years ago • 1 comments

Hey I just downloaded the app and after signing in reloading the graph, it showed every day as no contributions. Has anyone else had this problem? I had to change

switch (levelString) {
    case "#eeeeee": level = 0; break;
    case "#d6e685": level = 1; break;
    case "#8cc665": level = 2; break;
    case "#44a340": level = 3; break;
    case "#1e6823": level = 4; break;
}

to this to get it to work. Utils.java

switch (levelString) {
    case "#ebedf0": level = 0; break;
    case "#c6e48b": level = 1; break;
    case "#7bc96f": level = 2; break;
    case "#239a3b": level = 3; break;
    case "#196127": level = 4; break;
}

kevinhinterlong avatar Mar 31 '17 05:03 kevinhinterlong

I have find the same problem and i have pull a request.

LogicJake avatar May 06 '18 14:05 LogicJake