andy-portmen / undo-closed-tabs-button

undo close tab button Firefox extension
9 stars 6 forks source link

maxResults only 25 and not related to browser.sessionstore.max_tabs_undo #16

Open francwalter opened 6 years ago

francwalter commented 6 years ago

In the file: WebExtension/data/options/index.js the maximum for "Number of undo items displayed in the popup" is determined with: maxResults: Math.min(chrome.sessions.MAX_SESSION_RESULTS, Math.max(2, maxResults)), and that is 25 as I can read in the Mozilla doc about MAX_SESSION_RESULTS But this maximum should in fact be related to the config (in about:config) for: browser.sessionstore.max_tabs_undo which the user can set arbitrarily.

frm1001xplrr commented 5 years ago

Wonder if setting both these to 99 could increase the undo number?

browser.sessionstore.max_tabs_undo browser.sessionhistory.max_entries

?