浏览代码

Fix linting

Patbox 5 年之前
父节点
当前提交
1515458618
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      gui/src/2D/controls/sliders/slider.ts

+ 3 - 3
gui/src/2D/controls/sliders/slider.ts

@@ -54,17 +54,17 @@ export class Slider extends BaseSlider {
         this._background = value;
         this._markAsDirty();
     }
-    
+
     /** Gets or sets thumb's color */
     public get thumbColor(): string {
         return this._thumbColor;
     }
-    
+
     public set thumbColor(value: string) {
         if (this._thumbColor === value) {
             return;
         }
-    
+
         this._thumbColor = value;
         this._markAsDirty();
     }