dont have a max limit for mini picker

pull/139/head
Aevann 2023-03-10 03:35:29 +02:00
parent b9aad1503c
commit 7f3b607162
1 changed files with 0 additions and 2 deletions

View File

@ -377,12 +377,10 @@ function populate_speed_emoji_modal(results, textbox)
emoji_index = 0;
speed_carot_modal.innerHTML = "";
const MAXXX = 25;
// Not sure why the results is a Set... but oh well
let i = 0;
for (let result of results)
{
if (i++ > MAXXX) return i;
let emoji_option = document.createElement("div");
emoji_option.className = "speed-modal-option emoji-option " + (i === 1 ? "selected" : "");
emoji_option.tabIndex = 0;