eclipse problem in gnome

lol! hello all
I’ve a problem about eclipse in Gnome openSUSE 11.2.
:(I cannot build a new C/C++ project.
In this image, “Next” button was invalid while pressing.
Could you please tell me how to solve problem?

http://public.blu.livefilestore.com/y1pFCUHTPZraqVnNDqBHrKlT7NErF3O2bdoC4Wt8-iP-MqUz_VHuKJY8zAl1I79lJumcQUCBkl9uXViRxHJnhyjBA/eclipse_20091209_000.png

Try creating a script to launch Eclipse and add this line before Eclipse starts:

export GDK_NATIVE_WINDOWS=1

I typed ‘eclipse buttons’ into the forum search box, and found about five different threads with this solution in, without actually really having to look.

Just sayin… :wink:

But it doesn’t work.

:slight_smile:
After adding export GDK_NATIVE_WINDOWS=true to a script, it works.
Problem has been solved, Thank you.

Weird, I wonder why true worked and 1 did not since for me using the parameter 1 works fine. Oh well, another mystery :\

Hi.

I had the same problem in KDE4 and 11.2 and solved it by putting GDK_NATIVE_WINDOWS=1 (or true, I think both ways worked for me) in my Eclipse start script. But this doesn’t work when Eclipse is restarted (after an update for example). Is it a bad idea to put GDK_NATIVE_WINDOWS=1 in my .profile so it’s always there when Eclipse is starting or restarting?

 Regards, Micke.

Here’s Ubuntu’s /usr/bin/eclipse (3.5 ):

#!/bin/sh

# work around e#290395 / LP: #458703
export GDK_NATIVE_WINDOWS=true

xuldir=/usr/lib/xulrunner-$(/usr/bin/xulrunner-1.9.1 --gre-version)
LD_LIBRARY_PATH=$xuldir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} /usr/lib/eclipse/eclipse "$@"