tags:

views:

118

answers:

1

The source code editor in XCode 3.1 has a new feature where your compiler error (and warning) messages are embedded directly in your code below the relevant line of text. I'm sure it sounded like a nice idea, but in practice I find it very annoying - your code jumps around as you try to make the edits to fix the error.

I know you can collapse the error message by clicking the marker icon in the left margin, but I'd prefer not to have them appear directly in my code at all. Is there any way to disable this feature? Surfing the preferences pane didn't turn up anything.

Memo to Apple: Tool tips would be a much better solution.

+1  A: 

Preferences -> Building -> Message Bubbles -> Show during builds: Never

Wevah