diff options
| author | Charles Lombardo <clombardo169@gmail.com> | 2022-09-11 13:19:20 -0400 |
|---|---|---|
| committer | Charles Lombardo <clombardo169@gmail.com> | 2022-09-11 13:29:13 -0400 |
| commit | 63ff3c38301c408958005f8c3d72eceba877cc4d (patch) | |
| tree | 231baf5e79d5d49b49aec1e27de5857e3a7960ac /Source/Android/app/src/main/java | |
| parent | 702e7bad585f7f417ab75c42385523f25bd2ce8b (diff) | |
Android: Change swipe refresh colors to match other component colors
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java index 8cebf28645..84b921aa8f 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java @@ -65,8 +65,9 @@ public final class PlatformGamesFragment extends Fragment implements PlatformGam // Set theme color to the refresh animation's background mSwipeRefresh.setProgressBackgroundColorSchemeColor( - MaterialColors.getColor(mSwipeRefresh, R.attr.colorSurfaceVariant)); - mSwipeRefresh.setColorSchemeColors(MaterialColors.getColor(mSwipeRefresh, R.attr.colorPrimary)); + MaterialColors.getColor(mSwipeRefresh, R.attr.colorPrimary)); + mSwipeRefresh.setColorSchemeColors( + MaterialColors.getColor(mSwipeRefresh, R.attr.colorOnPrimary)); mSwipeRefresh.setOnRefreshListener(mOnRefreshListener); |
