Ubuntu 9.10 上的 Eclipse Galileo 点击问题
我刚刚将 Ubuntu 从 9.04 升级到 9.10,并且正在尝试 Eclipse Galileo 的一个非常烦人的问题。
问题是 Eclipse 无法捕获某些按钮单击。例如,我尝试安装一个插件,然后单击“下一步”,然后什么也没发生。
我的Ubuntu版本升级之前没有遇到同样的问题。
I've just upgrade my Ubuntu from 9.04 to 9.10 and I'm experimenting a very annoying problem with Eclipse Galileo.
The problem is that Eclipse doesn't catch some button clicks. For example, I've tried to install a plugin and I clicked on next, and then nothing happened.
I didn't have the same problem before the upgrade of my Ubuntu version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 Eclipse 3.5 和 GTK+ 的已知错误(错误 291257) 2.8(在 Eclipse 3.6 中修复)。解决方法是在启动 Eclipse 之前将 GDK_NATIVE_WINDOWS 环境变量设置为 true。
我对 Eclipse 使用以下启动脚本:
重要的部分是
export GDK_NATIVE_WINDOWS=true
行。This is a known bug (bug 291257) with Eclipse 3.5 and GTK+ 2.8 (fixed in Eclipse 3.6). The workaround is to set the
GDK_NATIVE_WINDOWS
environment variable totrue
before to start Eclipse.I use the following startup script for Eclipse:
The important part is the line
export GDK_NATIVE_WINDOWS=true
.GTK 与 Karmic 发生了变化。以下是相关错误:
https://bugs.launchpad。 net/ubuntu/+source/swt-gtk/+bug/463086
https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257
There was a change in GTK with Karmic. Here are the relevant bugs:
https://bugs.launchpad.net/ubuntu/+source/swt-gtk/+bug/463086
https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257