diff --git a/src/musikcube/app/layout/NowPlayingLayout.cpp b/src/musikcube/app/layout/NowPlayingLayout.cpp index 4b91507b1..a17b2f361 100755 --- a/src/musikcube/app/layout/NowPlayingLayout.cpp +++ b/src/musikcube/app/layout/NowPlayingLayout.cpp @@ -111,7 +111,6 @@ int64_t NowPlayingLayout::RowDecorator(musik::core::TrackPtr track, size_t index else { attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); } - attrs |= A_BOLD; } } diff --git a/src/musikcube/app/window/CategoryListView.cpp b/src/musikcube/app/window/CategoryListView.cpp index c488c6156..6043eb68a 100755 --- a/src/musikcube/app/window/CategoryListView.cpp +++ b/src/musikcube/app/window/CategoryListView.cpp @@ -295,7 +295,6 @@ IScrollAdapter::EntryPtr CategoryListView::Adapter::GetEntry(cursespp::Scrollabl else { attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); } - attrs |= A_BOLD; } value = text::Ellipsize(value, this->GetWidth()); diff --git a/src/musikcube/app/window/TrackListView.cpp b/src/musikcube/app/window/TrackListView.cpp index 03dfe74d2..f7a56cb99 100755 --- a/src/musikcube/app/window/TrackListView.cpp +++ b/src/musikcube/app/window/TrackListView.cpp @@ -458,7 +458,6 @@ IScrollAdapter::EntryPtr TrackListView::Adapter::GetEntry(cursespp::ScrollableWi else { attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); } - attrs |= A_BOLD; } }