Skip to content

Commit

Permalink
Fix theming issue with snackbar.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Jun 25, 2020
1 parent be2ec36 commit 22447e6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.thoughtcrime.securesms.util.task;

import android.app.ProgressDialog;
import android.graphics.Color;
import android.os.AsyncTask;
import androidx.annotation.Nullable;
import com.google.android.material.snackbar.Snackbar;
Expand Down Expand Up @@ -60,6 +61,7 @@ protected void onPostExecute(Void result) {
Snackbar.make(view, snackbarText, snackbarDuration)
.setAction(snackbarActionText, this)
.setActionTextColor(snackbarActionColor)
.setTextColor(Color.WHITE)
.show();
}

Expand Down

0 comments on commit 22447e6

Please sign in to comment.