Remove unused comment

This commit is contained in:
Jordan Eldredge 2021-09-10 17:28:09 -07:00
parent 30160f0cae
commit 4c9be9fc62

View file

@ -34,7 +34,6 @@ export default class Slider extends GuiObj {
const deltaX = newMouseX - startX;
const deltaY = newMouseY - startY;
// TODO: What about vertical sliders?
if (this._vertical) {
const yPos = clamp(deltaY, 0, height);
this._position = yPos / height;