August 13, 2010 at 10:48 pm
· Filed under 工作 by Ahdong Won
http://maosuhan.javaeye.com/blog/714833
The issue is that Aptana uses the system tooltip color for their code assist boxes.
In the default theme on Ubuntu 10.04 this results in white on white.
For Ubuntu 10.04, go to System>Preferences>Appearance
In the Appearance Preferences window select Theme, then click the Customize button.
Select the Colors tab, and then click on Tooltips text color to change it.
Choose something that contrasts well against both the tooltip background (black) and the tooltip text (white.)
Permalink
November 3, 2009 at 1:16 pm
· Filed under 工作 by Ahdong Won
升级到UBUNTU 9.10后发现ECLIPSE中弹出窗口上面按钮都不能点了,点了按钮会动一下,但就是不执行它该执行的动作,想着以为是系统的或者JRE的BUG,所以静待系统更新。今天偶然搜索了下,找到解决办法了–
(http://www.norio.be/blog/2009/10/problems-eclipse-buttons-ubuntu-910 , http://qingcaowg.javaeye.com/blog/508183)
After upgrading to Ubuntu 9.10 (Karmic Koala) some buttons no longer work in Eclipse 3.5. Clicking has no effect but keyboard shortcuts still work.
It looks like Eclipse is doing some nasty stuff advanced hacking in SWT on GTK. This bug is fixed in 3.6M2 but you can work around the issue in Eclipse 3.5 by launching Eclipse through the following small shell script (assuming Eclipse is installed in /opt/eclipse-3.5):
#!/bin/sh
export GDK_NATIVE_WINDOWS=1
/opt/eclipse-3.5/eclipse
Permalink