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:
authorLluis Sanchez <lluis@xamarin.com>2015-07-09 19:15:15 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2015-11-29 12:35:04 +0300
commite4989b1d2980ef4f0d01a84e6faeb340de8b4f1a (patch)
treea81b31837057edf89eea9886d2320f08cb383620 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors
parent2dc2858bbb296cd15e4c285f37402e5729ee3965 (diff)
WIV
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs
index 35a1754f2e..10f61dd778 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/CollectionEditor.cs
@@ -118,17 +118,17 @@ namespace MonoDevelop.Components.PropertyGrid.PropertyEditors
hBox.PackEnd (buttonBox, false, false, 5);
//add/remove buttons
- Button addButton = new Button (new Image (Stock.Add, IconSize.Button));
+ Button addButton = new Button (new ImageView (Stock.Add, IconSize.Button));
buttonBox.PackStart (addButton, false, false, 0);
if (types [0].IsAbstract)
addButton.Sensitive = false;
- Button removeButton = new Button (new Gtk.Image (Stock.Remove, IconSize.Button));
+ Button removeButton = new Button (new ImageView (Stock.Remove, IconSize.Button));
buttonBox.PackStart (removeButton, false, false, 0);
//sorting buttons
- Button upButton = new Button (new Image (Stock.GoUp, IconSize.Button));
+ Button upButton = new Button (new ImageView (Stock.GoUp, IconSize.Button));
buttonBox.PackStart (upButton, false, false, 0);
- Button downButton = new Button (new Image (Stock.GoDown, IconSize.Button));
+ Button downButton = new Button (new ImageView (Stock.GoDown, IconSize.Button));
buttonBox.PackStart (downButton, false, false, 0);
//Third column has list (TreeView) in a ScrolledWindow