Use a bold font for track labels.
authorCarl Hetherington <cth@carlh.net>
Thu, 25 Feb 2016 23:15:53 +0000 (23:15 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 25 Feb 2016 23:15:53 +0000 (23:15 +0000)
src/wx/timeline_labels_view.cc

index e5827f9c9cbfa896054d25e8de688a6f599fde01..fa52657c1dfad5bdbc71eaca7050b27cfe7e9d32 100644 (file)
@@ -56,7 +56,7 @@ void
 TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> >)
 {
        int const h = _timeline.track_height ();
-       gc->SetFont (gc->CreateFont(*wxNORMAL_FONT, wxColour (0, 0, 0)));
+       gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour (0, 0, 0)));
        gc->DrawText (_("Video"), 0, h / 2);
        gc->DrawText (_("Subtitles"), 0, 3 * h / 2);
        gc->DrawText (_("Audio"), 0, h + _timeline.tracks() * h / 2);