aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-08-06 00:52:23 -0700
committerGitHub <noreply@github.com>2019-08-06 00:52:23 -0700
commitd500d1dd6e05c6128dcb15fe8e15acb2aaf979cd (patch)
tree98caedbfd7a6b154ca6401c6a389cb5a08bdee3d /app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt
parentc78e670c2ac74e0c1b1fda4259cdcf69949e0d95 (diff)
parent59a462e6f23d046236bc20e6ac9c9464ed670f58 (diff)
downloadfrost-d500d1dd6e05c6128dcb15fe8e15acb2aaf979cd.tar.gz
frost-d500d1dd6e05c6128dcb15fe8e15acb2aaf979cd.tar.bz2
frost-d500d1dd6e05c6128dcb15fe8e15acb2aaf979cd.zip
Merge pull request #1503 from AllanWang/format
Format
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt
index 82e15111..a09b5d39 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbItem.kt
@@ -50,7 +50,12 @@ enum class FbItem(
MENU(R.string.menu, GoogleMaterial.Icon.gmd_menu, "settings", ::MenuFragment),
MESSAGES(R.string.messages, MaterialDesignIconic.Icon.gmi_comments, "messages"),
NOTES(R.string.notes, CommunityMaterial.Icon2.cmd_note, "notes"),
- NOTIFICATIONS(R.string.notifications, MaterialDesignIconic.Icon.gmi_globe, "notifications", ::NotificationFragment),
+ NOTIFICATIONS(
+ R.string.notifications,
+ MaterialDesignIconic.Icon.gmi_globe,
+ "notifications",
+ ::NotificationFragment
+ ),
ON_THIS_DAY(R.string.on_this_day, GoogleMaterial.Icon.gmd_today, "onthisday"),
PAGES(R.string.pages, GoogleMaterial.Icon.gmd_flag, "pages"),
PHOTOS(R.string.photos, GoogleMaterial.Icon.gmd_photo, "me/photos"),
@@ -77,4 +82,5 @@ enum class FbItem(
companion object : EnumCompanion<FbItem>("frost_arg_fb_item", values())
}
-fun defaultTabs(): List<FbItem> = listOf(FbItem.FEED, FbItem.MESSAGES, FbItem.NOTIFICATIONS, FbItem.MENU)
+fun defaultTabs(): List<FbItem> =
+ listOf(FbItem.FEED, FbItem.MESSAGES, FbItem.NOTIFICATIONS, FbItem.MENU)