I'm developing an application (http://sourceforge.net/projects/audiocuesheet/) and use fedora. Since the rpm for fedora is from monodevelop 2.8.x and I need the features of monodevelop 4.0. I downloaded the tarball and build monodevelop. It works good as described, but I can not view the source of my sourcefiles (screenshot).
Has anyone any idea, why this fails? I tried starting monodevelop with no redirection, but couldn't find any error.
This might by an issue with the oxygen-gtk-theme. See here. Start Monodevelop with the environment variable OXYGEN_DISABLE_INNER_SHADOWS_HACK set to 1.
In the shell:
export OXYGEN_DISABLE_INNER_SHADOWS_HACK=1
monodevelop
You can also put this as a shell script to /usr/local/bin/monodevelop. Then monodevelop is automatically started with this environment variable.
#!/bin/sh
export OXYGEN_DISABLE_INNER_SHADOWS_HACK=1
/usr/bin/monodevelop
Remember to make it executable with sudo chmod a+x /usr/local/bin/monodevelop