diff --git a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java index 816da71a..3f5bd0cf 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java +++ b/app/src/main/java/gr/thmmy/mthmmy/activities/board/BoardAdapter.java @@ -234,6 +234,9 @@ class BoardAdapter extends RecyclerView.Adapter { topicViewHolder.topicUnreadDot.setTypeface(Typeface.createFromAsset(context.getAssets(), "fonts/fontawesome-webfont.ttf")); if (topic.isUnread()) topicViewHolder.topicUnreadDot.setVisibility(View.VISIBLE); + else { + topicViewHolder.topicUnreadDot.setVisibility(View.GONE); + } String lockedSticky = topic.getSubject(); if (topic.isLocked()) lockedSticky += " " + context.getResources().getString(R.string.fa_lock); diff --git a/app/src/main/java/gr/thmmy/mthmmy/base/BaseActivity.java b/app/src/main/java/gr/thmmy/mthmmy/base/BaseActivity.java index a68a8aed..94694bd0 100644 --- a/app/src/main/java/gr/thmmy/mthmmy/base/BaseActivity.java +++ b/app/src/main/java/gr/thmmy/mthmmy/base/BaseActivity.java @@ -197,7 +197,7 @@ public abstract class BaseActivity extends AppCompatActivity { .color(primaryColor); settingsIconSelected = new IconicsDrawable(this) - .icon(GoogleMaterial.Icon.gmd_file_download) + .icon(GoogleMaterial.Icon.gmd_settings) .color(selectedSecondaryColor); loginIcon = new IconicsDrawable(this)