mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00
Make workspaces icons randomly use only non-flag emojis
This commit is contained in:
@@ -621,7 +621,7 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
|
||||
let parentPanel = document.getElementById('PanelUI-zen-workspaces-multiview');
|
||||
|
||||
// randomly select an icon
|
||||
let icon = this._kIcons[Math.floor(Math.random() * this._kIcons.length)];
|
||||
let icon = this._kIcons[Math.floor(Math.random() * (this._kIcons.length - 257))];
|
||||
this._workspaceCreateInput.textContent = '';
|
||||
this._workspaceCreateInput.value = '';
|
||||
this._workspaceCreateInput.setAttribute('data-initial-value', '');
|
||||
|
Reference in New Issue
Block a user