Fix
This commit is contained in:
parent
a0ce545636
commit
f10f3dc5cf
1 changed files with 1 additions and 1 deletions
|
@ -784,7 +784,7 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
||||||
public boolean updateInfo(DrawSettings drawSettings) {
|
public boolean updateInfo(DrawSettings drawSettings) {
|
||||||
boolean recording = isRecording();
|
boolean recording = isRecording();
|
||||||
Integer action = AV_DEFAULT_ACTION.get();
|
Integer action = AV_DEFAULT_ACTION.get();
|
||||||
if (!Algorithms.objectEquals(recording, cachedAction) || !Algorithms.objectEquals(action, cachedRecording)) {
|
if (!Algorithms.objectEquals(recording, cachedRecording) || !Algorithms.objectEquals(action, cachedAction)) {
|
||||||
cachedAction = action;
|
cachedAction = action;
|
||||||
cachedRecording = recording;
|
cachedRecording = recording;
|
||||||
if (recording) {
|
if (recording) {
|
||||||
|
|
Loading…
Reference in a new issue