Monodevelop 4.0 no code

I am developing an application ( http://sourceforge.net/projects/audiocuesheet/ ) and am using fedora. Since the revs for fedora are from monodevelop 2.8.x and I need the functions of monodevelop 4.0. I downloaded tarball and compiled monodevelop. This works well as described, but I can’t see the source of my source files (screenshot).

screenshot

Does anyone have any idea why this is failing? I tried to run monodevelop without redirecting, but could not find the error.

+7
source share
2 answers

This can be a problem with the gtk oxygen theme. See here . Run 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 in / usr / local / bin / monodevelop. Then monodevelop starts automatically 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

+7
source

This is a known bug.

The only solution (for now) is to change the GTK theme in the KDE settings β†’ Application Appearance.

They say (the error was filed somewhere), the problem is with the topic itself, but it's hard for me to believe ... Probably you have a set of oxygen gtk, change it, for example, to Raleigh, this will work.

Remember to restart monodevelop; -)

I like the oxygen theme, I find it the most annoying problem with md-4.0 ..

Edit: http://mono.1490590.n4.nabble.com/Text-editor-problem-with-monodevelop-4-0-td4658742.html - this is where I found the solution.

+8
source

All Articles