Skip to content

Commit 972feae

Browse files
committed
Drop ctrl-key requirement in "Purge all caches" operation
Related feedback: - https://www.reddit.com/r/uBlockOrigin/comments/lrcwii/memory_use_in_roaming_profile_in_windows/goq6h4n/
1 parent ac9a301 commit 972feae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/3p-filters.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ uDom('#ignoreGenericCosmeticFilters').on('change', onFilteringSettingsChanged);
678678
uDom('#buttonApply').on('click', ( ) => { buttonApplyHandler(); });
679679
uDom('#buttonUpdate').on('click', ( ) => { buttonUpdateHandler(); });
680680
uDom('#buttonPurgeAll').on('click', ev => {
681-
buttonPurgeAllHandler(ev.ctrlKey && ev.shiftKey);
681+
buttonPurgeAllHandler(ev.shiftKey);
682682
});
683683
uDom('#lists').on('change', '.listEntry input', onListsetChanged);
684684
uDom('#lists').on('click', '.listEntry .remove', onRemoveExternalList);

0 commit comments

Comments
 (0)