We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86456bd commit 40cb966Copy full SHA for 40cb966
src/vs/workbench/contrib/themes/browser/themes.contribution.ts
@@ -99,9 +99,9 @@ class MarketplaceThemesPicker {
99
try {
100
const installedExtensions = await this._installedExtensions;
101
102
- const options = { text: `${this.marketplaceQuery} ${value}`, pageSize: 20 };
+ const options = { text: `${this.marketplaceQuery} ${value}`, pageSize: 40 };
103
const pager = await this.extensionGalleryService.query(options, token);
104
- for (let i = 0; i < pager.total && i < 2; i++) {
+ for (let i = 0; i < pager.total && i < 1; i++) {
105
if (token.isCancellationRequested) {
106
break;
107
}
0 commit comments