We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01af369 commit 3a39304Copy full SHA for 3a39304
html5/js/Client.js
@@ -3174,7 +3174,7 @@ class XpraClient {
3174
);
3175
if (this.server_is_desktop || this.server_is_shadow) {
3176
window.noWindowList();
3177
- } else if (win && win.has_decorations) {
+ } else if (win && win.decorations) {
3178
const trimmedTitle = Utilities.trimString(win.title, 30);
3179
window.addWindowListItem(win, wid, trimmedTitle);
3180
}
@@ -3311,7 +3311,7 @@ class XpraClient {
3311
_process_lost_window(packet) {
3312
const wid = packet[1];
3313
const win = this.id_to_window[wid];
3314
- if (win && win.has_decorations) {
+ if (win && win.decorations) {
3315
window.removeWindowListItem(wid);
3316
3317
try {
0 commit comments