Skip to content

Commit

Permalink
Buffer dataChangeEvents for tiles
Browse files Browse the repository at this point in the history
While desktop is in background mode events will be buffered.

377545
  • Loading branch information
csk-bsi committed Mar 14, 2024
1 parent 9b2a48d commit 1aa3af3
Showing 1 changed file with 3 additions and 3 deletions.
@@ -1,9 +1,9 @@
/*
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
* Copyright (c) 2010-2024 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
Expand Down Expand Up @@ -317,7 +317,7 @@ public void registerDataChangeListener(Object... dataTypes) {
}
};
}
IDesktop.CURRENT.get().dataChangeListeners().add(m_internalDataChangeListener, true, dataTypes);
IDesktop.CURRENT.get().dataChangeDesktopInForegroundListeners().add(m_internalDataChangeListener, true, dataTypes);
}

@Override
Expand Down

0 comments on commit 1aa3af3

Please sign in to comment.