X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2FMobileLedgerApplication.java;h=1bf8b54e7c96ef091f9eaa7f8f19b911a09063df;hp=6550765b3beb9e235137981b426a62a56ec1f37d;hb=998dd32a089d199a2569069415755eb3169b35b0;hpb=11c8dff16901782f69287854cb4788ddf8d932c2 diff --git a/app/src/main/java/net/ktnx/mobileledger/MobileLedgerApplication.java b/app/src/main/java/net/ktnx/mobileledger/MobileLedgerApplication.java index 6550765b..1bf8b54e 100644 --- a/app/src/main/java/net/ktnx/mobileledger/MobileLedgerApplication.java +++ b/app/src/main/java/net/ktnx/mobileledger/MobileLedgerApplication.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger; @@ -66,13 +66,13 @@ public class MobileLedgerApplication extends Application { Resources.Theme theme = getTheme(); Globals.tableRowDarkBG = rm.getColor(R.color.table_row_dark_bg, theme); Globals.tableRowLightBG = rm.getColor(R.color.table_row_light_bg, theme); - Globals.primaryDark = rm.getColor(R.color.design_default_color_primary_dark, theme); + Globals.primaryDark = rm.getColor(R.color.colorPrimaryDark, theme); Globals.defaultTextColor = rm.getColor(android.R.color.tab_indicator_text, theme); } else { Globals.tableRowDarkBG = rm.getColor(R.color.table_row_dark_bg); Globals.tableRowLightBG = rm.getColor(R.color.table_row_light_bg); - Globals.primaryDark = rm.getColor(R.color.design_default_color_primary_dark); + Globals.primaryDark = rm.getColor(R.color.colorPrimaryDark); Globals.defaultTextColor = rm.getColor(android.R.color.tab_indicator_text); } }