Patbox 5 лет назад
Родитель
Сommit
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._background = value;
         this._markAsDirty();
         this._markAsDirty();
     }
     }
-    
+
     /** Gets or sets thumb's color */
     /** Gets or sets thumb's color */
     public get thumbColor(): string {
     public get thumbColor(): string {
         return this._thumbColor;
         return this._thumbColor;
     }
     }
-    
+
     public set thumbColor(value: string) {
     public set thumbColor(value: string) {
         if (this._thumbColor === value) {
         if (this._thumbColor === value) {
             return;
             return;
         }
         }
-    
+
         this._thumbColor = value;
         this._thumbColor = value;
         this._markAsDirty();
         this._markAsDirty();
     }
     }