aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-21 16:03:00 -0700
committerAllan Wang <me@allanwang.ca>2017-06-21 16:03:00 -0700
commit8769be855196f17bb7bfdfb411994ea901eb51a9 (patch)
treeae2ba73fcb63ab02dc7e83bff2f0c7f86c02c320 /app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
parent1ec75d0b2b7f746e2a0ae982b936fa4f566ec738 (diff)
downloadfrost-8769be855196f17bb7bfdfb411994ea901eb51a9.tar.gz
frost-8769be855196f17bb7bfdfb411994ea901eb51a9.tar.bz2
frost-8769be855196f17bb7bfdfb411994ea901eb51a9.zip
Lots of theming and fixes
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
index 9f37ff2e..83564be9 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
@@ -13,7 +13,7 @@ import com.pitchedapps.frost.injectors.InjectorContract
*/
object Prefs : KPref() {
- var lastActive: Long by kpref("last_active", -1L)
+ var lastLaunch: Long by kpref("last_launch", -1L)
var userId: Long by kpref("user_id", -1L)
@@ -37,7 +37,7 @@ object Prefs : KPref() {
var installDate: Long by kpref("install_date", -1L)
- var identifier: Int by kpref("indentifier", -1)
+ var identifier: Int by kpref("identifier", -1)
private val loader = lazyResettable { Theme.values[Prefs.theme] }