浏览代码

Fixed Clear call in label

Tig 1 年之前
父节点
当前提交
6786f737c5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      UICatalog/Scenarios/ColorPicker.cs

+ 1 - 1
UICatalog/Scenarios/ColorPicker.cs

@@ -99,7 +99,7 @@ public class ColorPickers : Scenario
     /// <summary>Update a color label from his ColorPicker.</summary>
     private void UpdateColorLabel (Label label, ColorPicker colorPicker)
     {
-        label.ClearFrame ();
+        label.Clear ();
         var color = new Color (colorPicker.SelectedColor);
 
         label.Text =