-fixed, text gets cut on widget #284

This commit is contained in:
Eljo
2019-06-24 22:35:03 +02:00
parent 4d220d4d17
commit baadf29d34
3 changed files with 21 additions and 15 deletions

View File

@ -29,7 +29,7 @@ class MyWidgetProvider : AppWidgetProvider() {
Thread {
context.widgetsDB.getWidgets().forEach {
val views = RemoteViews(context.packageName, R.layout.widget)
views.setBackgroundColor(R.id.notes_widget_holder, context.config.widgetBgColor)
views.setBackgroundColor(R.id.frame_widget, context.config.widgetBgColor)
setupAppOpenIntent(context, views, R.id.notes_widget_holder, it)
Intent(context, WidgetService::class.java).apply {
@ -57,4 +57,4 @@ class MyWidgetProvider : AppWidgetProvider() {
}
}.start()
}
}
}