You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description': nls.localize('window.smoothScrollingWorkaround',"Enable this workaround if scrolling is no longer smooth after restoring a minimized VS Code window. This is a workaround for an issue (https://github.com/Microsoft/vscode/issues/13612) where scrolling starts to lag on devices with precision trackpads like the Surface devices from Microsoft. Enabling this workaround can result in a little bit of layout flickering after restoring the window from minimized state but is otherwise harmless."),
414
414
'included': isWindows
415
+
},
416
+
'window.clickThroughInactive': {
417
+
'type': 'boolean',
418
+
'default': true,
419
+
'description': nls.localize('window.clickThroughInactive',"If enabled, clicking on an inactive window will both activate the window and execute the element under the mouse. If disabled, clicking anywhere on an inactive window will activate it only, without executing the element under the mouse."),
workbenchActionsRegistry.registerWorkbenchAction(newSyncActionDescriptor(OpenRecentAction,OpenRecentAction.ID,OpenRecentAction.LABEL,{primary: isDeveloping ? null : KeyMod.CtrlCmd|KeyCode.KEY_R,mac: {primary: KeyMod.WinCtrl|KeyCode.KEY_R}}),'File: Open Recent...',localize('file',"File"));
426
426
workbenchActionsRegistry.registerWorkbenchAction(newSyncActionDescriptor(ReloadWindowWithExtensionsDisabledAction,ReloadWindowWithExtensionsDisabledAction.ID,ReloadWindowWithExtensionsDisabledAction.LABEL),'Reload Window Without Extensions');
427
+
427
428
// Actions for macOS native tabs management (only when enabled)
0 commit comments