Revert "A bit more bold experimentation."

This reverts commit 84b2ff5544.
This commit is contained in:
casey langen 2018-07-14 16:09:22 -07:00
parent 98d6438685
commit 2da57cc984
3 changed files with 0 additions and 3 deletions

View File

@ -111,7 +111,6 @@ int64_t NowPlayingLayout::RowDecorator(musik::core::TrackPtr track, size_t index
else { else {
attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM);
} }
attrs |= A_BOLD;
} }
} }

View File

@ -295,7 +295,6 @@ IScrollAdapter::EntryPtr CategoryListView::Adapter::GetEntry(cursespp::Scrollabl
else { else {
attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM);
} }
attrs |= A_BOLD;
} }
value = text::Ellipsize(value, this->GetWidth()); value = text::Ellipsize(value, this->GetWidth());

View File

@ -458,7 +458,6 @@ IScrollAdapter::EntryPtr TrackListView::Adapter::GetEntry(cursespp::ScrollableWi
else { else {
attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM); attrs = COLOR_PAIR(CURSESPP_SELECTED_LIST_ITEM);
} }
attrs |= A_BOLD;
} }
} }