From 67fb55ccf22cc40adc78935105ee7b01b0ce5d30 Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 29 Oct 2015 07:00:22 -0700 Subject: [PATCH] Clear thumbnail when saving changes. Not sure this is the best place to do it, but it fixes the problem I'm after. --- .../XWords4/src/org/eehouse/android/xw4/GameConfigDelegate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameConfigDelegate.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameConfigDelegate.java index 174e73b3b..c34ebbb4f 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameConfigDelegate.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameConfigDelegate.java @@ -1156,6 +1156,7 @@ public class GameConfigDelegate extends DelegateBase GameLock gameLock = new GameLock( m_rowid, true ).lock(); GameUtils.applyChanges( m_activity, m_gi, m_car, gameLock, forceNew ); + DBUtils.saveThumbnail( m_activity, gameLock, null ); // clear it gameLock.unlock(); } }