我在eclipse中创建了一个通用的介绍页面,我点击了帮助 - >欢迎它出现。但在最初的开始它并没有出现。我试图将“org.eclipse.ui / SHOW_INTRO = true”或“org.eclipse.ui.workbench / WELCOME_DIALOG = true”添加到插件自定义中,但它没有改变。
我找到了WorkbenchWindow有这个代码的解决方案
// Hack!! don't show the intro if there's more than one open
// perspective
List<MPerspective> persps = modelService.findElements(model, null, MPerspective.class,
null);
if (persps.size() > 1) {
PrefUtil.getAPIPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_INTRO,
false);
PrefUtil.saveAPIPrefs();
}
现在我在WindowAdvicer中将SHOW_INTRO更改为true。
答案 0 :(得分:0)
我在更新到Neon.2时遇到了这种情况。在我的plugin_customization.ini中,我有&#39; org.eclipse.ui / PERSPECTIVE_BAR_EXTRAS = id1,id2&#39;这打开了2个视角。此功能在霓虹灯之前没有工作,但已针对霓虹灯修复(错误479126 - PERSPECTIVE_BAR_EXTRAS设置未考虑)。这和&#34; Hack&#34;的结合找到的OP会导致SHOW_INTRO设置为false。 解决方案是删除PERSPECTIVE_BAR_EXTRAS pref。