Make icon sizes configurable, increase default sizes for icons

Fixes #250
This commit is contained in:
Jonas Kvinge
2020-06-28 18:36:48 +02:00
parent 9a1520d5e3
commit 4d78b30e8c
26 changed files with 351 additions and 71 deletions

View File

@@ -191,7 +191,20 @@ InternetTabsView::~InternetTabsView() {
delete ui_;
}
void InternetTabsView::ReloadSettings() { ui_->search_view->ReloadSettings(); }
void InternetTabsView::ReloadSettings() {
if (service_->artists_collection_model()) {
ui_->artists_collection->view()->ReloadSettings();
}
if (service_->albums_collection_model()) {
ui_->albums_collection->view()->ReloadSettings();
}
if (service_->songs_collection_model()) {
ui_->songs_collection->view()->ReloadSettings();
}
ui_->search_view->ReloadSettings();
}
void InternetTabsView::GetArtists() {