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 c5ca633 commit 0a26ed8Copy full SHA for 0a26ed8
src/vs/base/browser/ui/list/listWidget.ts
@@ -259,7 +259,8 @@ export function isMonacoEditor(e: HTMLElement): boolean {
259
}
260
261
export function isButton(e: HTMLElement): boolean {
262
- if (e.tagName === 'A' && e.classList.contains('monaco-button')) {
+ if ((e.tagName === 'A' && e.classList.contains('monaco-button')) ||
263
+ (e.tagName === 'DIV' && e.classList.contains('monaco-button-dropdown'))) {
264
return true;
265
266
0 commit comments