Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Change dirble icon
Browse files Browse the repository at this point in the history
  • Loading branch information
CDrummond committed May 24, 2018
1 parent ed3fc33 commit b5dda70
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cantata.qrc
Expand Up @@ -18,7 +18,7 @@

<file alias="shoutcast.svg">streams/icons/shoutcast.svg</file>
<file alias="tunein.svg">streams/icons/tunein.svg</file>
<file alias="dirble.svg">streams/icons/dirble.svg</file>
<file alias="station.svg">streams/icons/station.svg</file>

<file alias="album.svg">icons/media-optical.svg</file>
<file alias="album32.svg">icons/media-optical32.svg</file>
Expand Down
2 changes: 1 addition & 1 deletion models/streamsearchmodel.cpp
Expand Up @@ -45,7 +45,7 @@ StreamSearchModel::StreamSearchModel(QObject *parent)
// ORDER *MUST* MATCH Category ENUM!!!!!
root->children.append(new StreamsModel::CategoryItem("http://opml.radiotime.com/Search.ashx", tr("TuneIn"), root, MonoIcon::icon(":tunein.svg", Utils::monoIconColor())));
root->children.append(new StreamsModel::CategoryItem(QLatin1String("http://")+StreamsModel::constShoutCastHost+QLatin1String("/legacy/genrelist"), tr("ShoutCast"), root, MonoIcon::icon(":shoutcast.svg", Utils::monoIconColor())));
root->children.append(new StreamsModel::CategoryItem(QLatin1String("http://")+StreamsModel::constDirbleHost+QLatin1String("/v2/search/"), tr("Dirble"), root, MonoIcon::icon(":dirble.svg", Utils::monoIconColor())));
root->children.append(new StreamsModel::CategoryItem(QLatin1String("http://")+StreamsModel::constDirbleHost+QLatin1String("/v2/search/"), tr("Dirble"), root, MonoIcon::icon(":station.svg", Utils::monoIconColor())));
icon = MonoIcon::icon(FontAwesome::search, Utils::monoIconColor());
}

Expand Down
2 changes: 1 addition & 1 deletion models/streamsmodel.cpp
Expand Up @@ -500,7 +500,7 @@ StreamsModel::StreamsModel(QObject *parent)
shoutCast=new ShoutCastCategoryItem(constShoutCastUrl, tr("ShoutCast"), root, MonoIcon::icon(":shoutcast.svg", col));
shoutCast->configName="shoutcast";
root->children.append(shoutCast);
dirble=new DirbleCategoryItem(constDirbleUrl, tr("Dirble"), root, MonoIcon::icon(":dirble.svg", col));
dirble=new DirbleCategoryItem(constDirbleUrl, tr("Dirble"), root, MonoIcon::icon(":station.svg", col));
dirble->configName="dirble";
root->children.append(dirble);
favourites=new FavouritesCategoryItem(constFavouritesUrl, tr("Favorites"), root, MonoIcon::icon(FontAwesome::heart, MonoIcon::constRed));
Expand Down
8 changes: 0 additions & 8 deletions streams/icons/dirble.svg

This file was deleted.

3 changes: 3 additions & 0 deletions streams/icons/station.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b5dda70

Please sign in to comment.