X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=bigscreen%2Fgroupscreen.cpp;h=1513ef31c36bc42972606d2ea61e29ac9b8a06f2;hb=40af5a0e1275f94fe901733336d690effc0bfc38;hp=92618f5cf395760cf28ff230e667441d907e22ec;hpb=cad5aff5a3a21bb8c95d8a265e93687234f46a43;p=ccbs diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index 92618f5..1513ef3 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -81,6 +81,14 @@ void GroupScreen::draw_column_headings(std::vector &td, const Group & unsigned col = 1; unsigned x = 40 + colwidth[0]; for (std::vector::const_iterator i = group.players[0].scores.begin(); i != group.players[0].scores.end(); ++i, ++col) { + if (!i->chosen) { + unsigned this_width = my_draw_text(i->song.short_title, NULL, 12.0, "columnheading"); + my_draw_text_deferred(td, i->song.short_title, 12.0, "columnheading", "columnheading", x + colwidth[col] / 2 - this_width / 2, 100); + } + x += colwidth[col] + 20; + } + + if (num_scores > 1) { unsigned this_width = my_draw_text("Total", NULL, 12.0, "columnheading"); my_draw_text_deferred(td, "Total", 12.0, "columnheading", "columnheading", x + colwidth[num_scores + 1] / 2 - this_width / 2, 100); x += colwidth[num_scores + 1] + 20;