We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b204c0 commit f64cb15Copy full SHA for f64cb15
addons/xterm-addon-webgl/src/WebglRenderer.ts
@@ -471,9 +471,9 @@ export class WebglRenderer extends Disposable implements IRenderer {
471
this._coreBrowserService.isFocused &&
472
(terminal.options.cursorStyle || 'block') === 'block') {
473
this._cellColorResolver.result.fg =
474
- Attributes.CM_RGB | this._themeService.colors.cursorAccent.rgba & Attributes.RGB_MASK;
+ Attributes.CM_RGB | (this._themeService.colors.cursorAccent.rgba >> 8 & Attributes.RGB_MASK);
475
this._cellColorResolver.result.bg =
476
- Attributes.CM_RGB | this._themeService.colors.cursor.rgba & Attributes.RGB_MASK;
+ Attributes.CM_RGB | (this._themeService.colors.cursor.rgba >> 8 & Attributes.RGB_MASK);
477
}
478
479
0 commit comments