1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-28 12:56:49 +01:00

Also theme full changelog with default css (copy and paste sucks, I know)

This commit is contained in:
Andreas Shimokawa 2017-08-12 00:45:07 +02:00
parent 7302832d84
commit 4dc53a4390

View File

@ -251,7 +251,7 @@ public class ControlCenterv2 extends AppCompatActivity
GBApplication.quit();
return true;
case R.id.external_changelog:
ChangeLog cl = new ChangeLog(this, GBApplication.isDarkThemeEnabled() ? "body { color: #ffffff; background-color: #282828; }" : "");
ChangeLog cl = new ChangeLog(this, (GBApplication.isDarkThemeEnabled() ? "body { color: #ffffff; background-color: #282828; }\n" : "") + DEFAULT_CSS);
cl.getFullLogDialog().show();
return true;
}