1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-12-24 01:25:50 +01:00

Fossil Hybrid HR: Fix circles disappearing when connecting in force-white mode

Also fix black background when deleting a custom background
This commit is contained in:
Andreas Shimokawa 2020-04-13 00:15:44 +02:00
parent 6dddc003e9
commit 9a31ef39f3

View File

@ -179,7 +179,6 @@ public class FossilHRWatchAdapter extends FossilWatchAdapter {
try {
this.backGroundImage = AssetImageFactory.createAssetImage(whiteBitmap, true, 0, 1, 0);
queueWrite(new AssetFilePutRequest(this.backGroundImage, (byte) 0x00, this));
} catch (IOException e2) {
logger.error("Backgroundimage error", e2);
}
@ -194,7 +193,7 @@ public class FossilHRWatchAdapter extends FossilWatchAdapter {
public void setBackgroundImage(byte[] pixels) {
if (pixels == null) {
getBackgroundFile().delete();
this.backGroundImage = null;
loadBackground(); // recreates the white background in force-white mode, else backgroundImage=null
} else {
this.backGroundImage = AssetImageFactory.createAssetImage(pixels, 0, 0, 0);
try {