Ubuntu 9.10 上的 Eclipse Galileo 点击问题

发布于 2024-08-13 01:58:37 字数 166 浏览 5 评论 0原文

我刚刚将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

厌味 2024-08-20 01:58:37

这是 Eclipse 3.5 和 GTK+ 的已知错误(错误 291257) 2.8(在 Eclipse 3.6 中修复)。解决方法是在启动 Eclipse 之前将 GDK_NATIVE_WINDOWS 环境变量设置为 true。

我对 Eclipse 使用以下启动脚本:

#!/bin/sh
export MOZILLA_FIVE_HOME=/usr/lib/mozilla/
export ECLIPSE_HOME=/opt/IBM/eclipse
export GDK_NATIVE_WINDOWS=true # workaround for Karmic - http://bit.ly/T8MIc
$ECLIPSE_HOME/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 to true before to start Eclipse.

I use the following startup script for Eclipse:

#!/bin/sh
export MOZILLA_FIVE_HOME=/usr/lib/mozilla/
export ECLIPSE_HOME=/opt/IBM/eclipse
export GDK_NATIVE_WINDOWS=true # workaround for Karmic - http://bit.ly/T8MIc
$ECLIPSE_HOME/eclipse $*

The important part is the line export GDK_NATIVE_WINDOWS=true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文