Eclipse Galileo click problem on Ubuntu 9.10

前端 未结 2 733
轻奢々
轻奢々 2020-12-30 10:42

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 b

2条回答
  •  情深已故
    2020-12-30 11:27

    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.

提交回复
热议问题