We are receiving numerous complaints that the Webswing rendering is breaking after the latest Chrome update 119.

This is a known bug related to all Chromium based browsers: https://bugs.chromium.org/p/chromium/issues/detail?id=1500272&q=canvas%20119&can=2

There are some workarounds:

  1. Use Firefox, Opera, Safari
  2. OR Disable acceleration in chrome://flags/#disable-accelerated-2d-canvas
  3. OR include the following code in index.html:
var originalGetContext = HTMLCanvasElement.prototype.getContext;
HTMLCanvasElement.prototype.getContext = function(type, attributes) {
  if (attributes) {
    attributes.willReadFrequently = true;
  }
  return originalGetContext.call(this, type, attributes || { willReadFrequently: true });
};
It is advised to also follow the Chromium updates.
arrow_back_ios

PreviousWebinar: Webswing 23.2 Release and new Component Migration Feature

NextWebswing 23.2: Easy-to-Use Release is here!

arrow_forward_ios