diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Body.hpp | 1 | ||||
-rw-r--r-- | include/Text.hpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/Body.hpp b/include/Body.hpp index b5ca210..3106cc3 100644 --- a/include/Body.hpp +++ b/include/Body.hpp @@ -317,5 +317,6 @@ namespace QuickMedia { std::shared_ptr<BodyItem> clicked_body_item = nullptr; RoundedRectangle item_background; RoundedRectangle reaction_background; + bool render_selected_item_bg = true; }; }
\ No newline at end of file diff --git a/include/Text.hpp b/include/Text.hpp index fbd850a..989edbb 100644 --- a/include/Text.hpp +++ b/include/Text.hpp @@ -147,7 +147,7 @@ namespace QuickMedia // 2: CJK // 3: Emoji std::array<sf::VertexArray, 3> vertices; - //sf::VertexBuffer vertex_buffers[3]; + std::array<sf::VertexBuffer, 3> vertex_buffers; float maxWidth; sf::Vector2f position; sf::Color color; |