summaryrefslogtreecommitdiff
path: root/ui/windowContent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/windowContent.cpp')
-rw-r--r--ui/windowContent.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/windowContent.cpp b/ui/windowContent.cpp
index 91732a7..0f6dc04 100644
--- a/ui/windowContent.cpp
+++ b/ui/windowContent.cpp
@@ -1,8 +1,6 @@
#include "windowContent.h"
#include "SDL_events.h"
-WindowContent::WindowContent(size_t width, size_t height) : uiShader {width, height} { }
-
void
WindowContent::tick(TickDuration)
{
@@ -27,6 +25,6 @@ WindowContent::handleInput(const SDL_Event & e)
eAdjusted.motion.y = size.y - e.motion.y;
break;
}
- uiComponents.rapplyOne(&UIComponent::handleInput, eAdjusted, UIComponent::Position {{}, size});
+ uiComponents.rapplyOne(&UIComponent::handleInput, eAdjusted);
return true;
}