0

For some reason Liferay Developer Studio (Eclipse-based) does not show the File menu:

enter image description here

As you can see, just a 1-pixel-high menu appears.
For comparizon, the Edit menu shows correctly:

enter image description here

In these condition, how can I invoke the Import item which is supposed to be found under New?

Is there any shortcut?
Or maybe a way to call actions via command line or IPC or something else?

4

2 回答 2

0

我找到了另一个解决方案。

在 liferay studio 2.0.0 上,有一个名为 fix-menu.sh 的文件有一个错误,但为此更改了他的内容:

!/bin/sh

UBUNTU_MENUPROXY=0 && ./DeveloperStudio

也解决问题。

问候。

于 2014-03-26T07:42:01.510 回答
0

我找到了一个解决方案:
而不是运行./LiferayDeveloperStudio,运行./fix-menu.sh

这样,菜单就会正确显示:

在此处输入图像描述

它所做的是设置一个这样的环境变量,然后调用 LiferayDeveloperStudio:

env UBUNTU_MENUPROXY=0 && ./LiferayDeveloperStudio
于 2014-03-25T09:06:32.710 回答