Added text fields to change colours for text and background, but background logic for that is not yet implemented. BUG: settings don't react as they should. Clicking on "serif," for example, doesn't actually select and store serif. What is going on?

This commit is contained in:
denizk0461
2023-05-08 13:15:09 +02:00
parent d51cef64bb
commit 252c69a3ef
12 changed files with 149 additions and 35 deletions
@@ -27,7 +27,6 @@ class CanvasText {
val bmp = if (isPreview) {
Bitmap.createBitmap(1024, 256, Bitmap.Config.ARGB_8888)
} else {
// Log.d("ASDFasdf", "${widgetSize.first} + ${widgetSize.second}")
Bitmap.createBitmap(widgetSize.first * 3, widgetSize.second * 3, Bitmap.Config.ARGB_8888)
}