Skip to content

Commit 40cb966

Browse files
committed
List of themes from MP flash after more themes arrive. Fixes microsoft#138137
1 parent 86456bd commit 40cb966

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/themes/browser/themes.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ class MarketplaceThemesPicker {
9999
try {
100100
const installedExtensions = await this._installedExtensions;
101101

102-
const options = { text: `${this.marketplaceQuery} ${value}`, pageSize: 20 };
102+
const options = { text: `${this.marketplaceQuery} ${value}`, pageSize: 40 };
103103
const pager = await this.extensionGalleryService.query(options, token);
104-
for (let i = 0; i < pager.total && i < 2; i++) {
104+
for (let i = 0; i < pager.total && i < 1; i++) {
105105
if (token.isCancellationRequested) {
106106
break;
107107
}

0 commit comments

Comments
 (0)