Removed unused field in ColorsPanel

This commit is contained in:
Benny Baumann
2021-08-21 17:58:23 +02:00
committed by Christian Göttsche
parent cf45a5d02b
commit 7146059645
3 changed files with 3 additions and 5 deletions

View File

@ -50,7 +50,7 @@ static void CategoriesPanel_makeDisplayOptionsPage(CategoriesPanel* this) {
}
static void CategoriesPanel_makeColorsPage(CategoriesPanel* this) {
Panel* colors = (Panel*) ColorsPanel_new(this->settings, this->scr);
Panel* colors = (Panel*) ColorsPanel_new(this->settings);
ScreenManager_add(this->scr, colors, -1);
}