From: Steinar H. Gunderson Date: Sun, 19 Feb 2012 16:58:24 +0000 (+0100) Subject: Fix so that chosen score is not in the wrong class. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=50753f7c1244d9deebe5b31b19953c5503c8f7b9;ds=sidebyside Fix so that chosen score is not in the wrong class. --- diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index 1513ef3..d417457 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -127,7 +127,7 @@ void GroupScreen::draw_scores(std::vector &td, const Group &group, un unsigned this_width = my_draw_text(text, NULL, 22.0, "score" + suffix); if (j->chosen) { - my_draw_text_deferred(td, text, 22.0, "chosensongname" + suffix, "freshchosensongname" + suffix, x + max_num_width - this_width, y); + my_draw_text_deferred(td, text, 22.0, "score" + suffix, "freshscore" + suffix, x + max_num_width - this_width, y); // draw the long name if we can, otherwise use the short one if (my_draw_text(j->song.title, NULL, 12.0, "chosensongname") > (colwidth[col] - 10 - max_num_width)) {