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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>2011-08-14 06:23:03 +0400
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>2011-08-15 10:05:17 +0400
commitf8eb59a56d42cf04f88f00f77f00dc1bc1c6eb3c (patch)
treecb5b4171ff6be3791ff392e7dc17ea4314c47efb /main/src/addins/WindowsPlatform
parentaf3b8e0e2dd32e59250ffb9b62f50ca292d5908d (diff)
[Windows] Enable the encoding box by default in the open dialog.
Our dialog in save mode is already enabling/disabling the encoding box, but for saving mode we need to make available always, and that included make int available from the start.
Diffstat (limited to 'main/src/addins/WindowsPlatform')
-rw-r--r--main/src/addins/WindowsPlatform/Dialogs/CustomOpenFileDialog.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/addins/WindowsPlatform/Dialogs/CustomOpenFileDialog.cs b/main/src/addins/WindowsPlatform/Dialogs/CustomOpenFileDialog.cs
index 3c2a8a9541..f097716521 100644
--- a/main/src/addins/WindowsPlatform/Dialogs/CustomOpenFileDialog.cs
+++ b/main/src/addins/WindowsPlatform/Dialogs/CustomOpenFileDialog.cs
@@ -81,7 +81,6 @@ namespace MonoDevelop.Platform
Location = new Point (labelWidth + 20, location.Y),
Width = DialogWidth - (labelWidth + 20 + padding),
SelectedEncodingId = data.Encoding,
- Enabled = false
};
Controls.AddRange (new Control [] { encodingLabel, encodingBox });