aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/List.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/List.cpp b/src/gui/List.cpp
index 0c5f78e..1e81b83 100644
--- a/src/gui/List.cpp
+++ b/src/gui/List.cpp
@@ -85,6 +85,7 @@ namespace gsr {
offset.x = floor(size.x * 0.5f - widget->get_size().x * 0.5f);
else
offset.x = 0.0f;
+
widget->set_position(draw_pos + offset);
if(widget.get() != selected_widget)
widget->draw(window, mgl::vec2f(0.0f, 0.0f));
@@ -99,6 +100,7 @@ namespace gsr {
if(content_alignment == Alignment::CENTER)
offset.y = floor(size.y * 0.5f - widget->get_size().y * 0.5f);
+
widget->set_position(draw_pos + offset);
if(widget.get() != selected_widget)
widget->draw(window, mgl::vec2f(0.0f, 0.0f));