Browse Source

Fixes "Report a bug" button in community tab

Signed-off-by: Daniel Bailey <daniel.bailey@grappleIT.co.uk>
Daniel Bailey 5 years ago
parent
commit
7d2ad3afda

+ 1 - 0
src/main/java/com/owncloud/android/ui/activity/CommunityActivity.java

@@ -93,6 +93,7 @@ public class CommunityActivity extends FileActivity {
 
         MaterialButton reportButton = findViewById(R.id.community_testing_report);
         reportButton.setBackgroundColor(ThemeUtils.primaryColor(this,true));
+        reportButton.setTextColor(ThemeUtils.fontColor(this, false));
         reportButton.setOnClickListener(v -> DisplayUtils.startLinkIntent(this, R.string.report_issue_link));
     }