Yes, there is. Download org.eclipse.swt.carbon.macosx_3.4.1.v3449c.jar and put it in DataBrowser/lib directory. Then make the following changes to DataBrowser/bin/databrowser script:
- Look for TOOL_JARS variable definition, and add ${databrowser}/lib/org.eclipse.swt.carbon.macosx_3.4.1.v3449c.jar to the list in TOOL_JARS,
- Find the line where DataBrowser is started, which looks like so:
${GF_JAVA:-java} ${JAVA_ARGS} -classpath ${TOOL_JARS} -Duser.language=us -Djava.io.tmpdir=${TEMP_DIR_ARCH} com.gemstone.gemfire.mgmt.DataBrowser.app.DataBrowserApp $
and insert the following switches in it: -d32 -XstartOnFirstThread -Dosgi.ws=swt, so that it looks like so:
${GF_JAVA:-java} ${JAVA_ARGS} -classpath ${TOOL_JARS} -d32 -XstartOnFirstThread -Dosgi.ws=swt -Duser.language=us -Djava.io.tmpdir=${TEMP_DIR_ARCH} com.gemstone.gemfire.mgmt.DataBrowser.app.DataBrowserApp $@
That should do it.