Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Text.cs « editor « libstetic « MonoDevelop.GtkCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bb92de62896347d83335ebbb2dc1bdfa15a020a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Stetic.Editor 
{
	public class Text : PropertyTextEditor 
	{
		public Text ()
		{
			// Don't allow editing the text in the editor
			// since there is no room for multiline edit in the grid.
			entry.Sensitive = false;
		}
	}
}