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: 667ccb2537e9ec610f41c4dbe4dfc4cbb7ddf343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Stetic.Editor 
{
	public class Text : TextEditor 
	{
		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;
		}
	}
}