소스 검색

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 =