Skip to content

Commit

Permalink
Merge pull request #1235 from hidroh/nova-widget
Browse files Browse the repository at this point in the history
Fix broken Nova launcher widgets
  • Loading branch information
hidroh authored Mar 30, 2019
2 parents 9a078f1 + 3ba2700 commit 85d01dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/appwidget.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:theme="@style/Theme.AppCompat"
android:theme="@android:style/Theme"
android:background="@drawable/bg_appwidget"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/padding_widget">

<include layout="@layout/include_appwidget" />

</RelativeLayout>
</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/appwidget_dark.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:theme="@style/Theme.AppCompat"
android:theme="@android:style/Theme"
android:background="@drawable/bg_appwidget_dark"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/padding_widget">

<include layout="@layout/include_appwidget" />

</RelativeLayout>
</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/appwidget_light.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:theme="@style/Theme.AppCompat.Light"
android:theme="@android:style/Theme.Light"
android:background="@drawable/bg_appwidget_light"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/padding_widget">

<include layout="@layout/include_appwidget" />

</RelativeLayout>
</RelativeLayout>

0 comments on commit 85d01dd

Please sign in to comment.