From gentoo-dev Mon Jan 13 00:04:02 2003 From: "Hogye, Michael" Date: Mon, 13 Jan 2003 00:04:02 +0000 To: gentoo-dev Subject: RE: [gentoo-dev] gtk+-2.2.0 & eclipse - PROBLEM FOUND X-MARC-Message: https://marc.info/?l=gentoo-dev&m=104241626519840 The call that's causing eclipse to hang is in org.eclipse.swt.widgets.ProgressBar.configureBar(). For some reason, after eclipse has drawn a full progress bar, it then makes a call configuring the progress bar to have min = 0, max = 0, and value = 0. Maybe there's a reason to do that? Regardless of reason, the resulting native call to gtk_progress_configure(0, 0, 0) is what hangs. So ... what I'm planning to do until one end or the other (probably gtk?) fixes things is put a check in ProgressBar.configureBar(), so that it doesn't call the native method if min == max == 0. I've had trouble compiling the eclipse source, but it gets through compiling the SWT jar before the build fails. So I can put in my little hack, build the SWT jar, and replace the installed SWT jar with the hacked version. If anybody wants a copy of the hacked jar, let me know. -- gentoo-dev@gentoo.org mailing list