diff --git a/ltx_flutter/android/app/src/main/AndroidManifest.xml b/ltx_flutter/android/app/src/main/AndroidManifest.xml index 641d9c2..7340912 100644 --- a/ltx_flutter/android/app/src/main/AndroidManifest.xml +++ b/ltx_flutter/android/app/src/main/AndroidManifest.xml @@ -1,7 +1,7 @@ diff --git a/ltx_flutter/lib/pages/today_views/infinity_view.dart b/ltx_flutter/lib/pages/today_views/infinity_view.dart index d0e01a6..e396b25 100644 --- a/ltx_flutter/lib/pages/today_views/infinity_view.dart +++ b/ltx_flutter/lib/pages/today_views/infinity_view.dart @@ -72,7 +72,7 @@ class _InfinityViewState extends State { try { Category category = categories.lookUp(hour.toString()); - tooltip = category.description!; + tooltip = category.name!; fgColor = category.foregroundColor; bgColor = category.backgroundColor; } catch (e) { @@ -89,7 +89,7 @@ class _InfinityViewState extends State { color: bgColor, child: Center( child: Text( - style: TextStyle(fontSize: 10, color: fgColor), + style: TextStyle(fontSize: 10, color: bgColor), hour.toString())), ), ),