diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/WidgetConfigureActivity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/WidgetConfigureActivity.kt index 8512bc52a..d39484793 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/WidgetConfigureActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/activities/WidgetConfigureActivity.kt @@ -52,7 +52,6 @@ class WidgetConfigureActivity : SimpleActivity() { updateTextColors(folder_picker_holder) val primaryColor = getProperPrimaryColor() config_bg_seekbar.setColors(mTextColor, primaryColor, primaryColor) - config_save.setTextColor(mTextColor) folder_picker_holder.background = ColorDrawable(getProperBackgroundColor()) folder_picker_show_folder_name.isChecked = config.showWidgetFolderName @@ -126,7 +125,7 @@ class WidgetConfigureActivity : SimpleActivity() { private fun updateBackgroundColor() { mBgColor = mBgColorWithoutTransparency.adjustAlpha(mBgAlpha) - config_image_holder.setBackgroundColor(mBgColor) + config_image_holder.background.applyColorFilter(mBgColor) config_bg_color.setFillWithStroke(mBgColor, mBgColor) } diff --git a/app/src/main/res/layout/activity_widget_config.xml b/app/src/main/res/layout/activity_widget_config.xml index d945f585e..70796f8c5 100644 --- a/app/src/main/res/layout/activity_widget_config.xml +++ b/app/src/main/res/layout/activity_widget_config.xml @@ -55,7 +55,9 @@ android:id="@+id/config_image_holder" android:layout_width="160dp" android:layout_height="wrap_content" - android:layout_below="@+id/folder_picker_holder"> + android:layout_below="@+id/folder_picker_holder" + android:layout_marginTop="@dimen/activity_margin" + android:background="@drawable/widget_round_background">