Browse Source

Fix linting

Patbox 5 years ago
parent
commit
1515458618
1 changed files with 3 additions and 3 deletions
  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();
     }