Re-add missing built-in widgets

This commit is contained in:
MM20 2021-12-09 20:06:49 +01:00
parent a3e7d22b9f
commit 6fbb2f3164
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -20,7 +20,9 @@ class WidgetRepository(
fun getInternalWidgets(): List<Widget> {
return listOf(
Widget(WidgetType.INTERNAL, "weather", -1, context.getString(R.string.widget_name_weather))
Widget(WidgetType.INTERNAL, "weather", -1, context.getString(R.string.widget_name_weather)),
Widget(WidgetType.INTERNAL, "music", -1, context.getString(R.string.widget_name_music)),
Widget(WidgetType.INTERNAL, "calendar", -1, context.getString(R.string.widget_name_calendar)),
)
}