From d2f6b0738bdd90a5503fff404dfa4f0ad0962ef3 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 14 Nov 2024 00:25:37 +0100 Subject: Add option to start replay on fullscreen --- include/gui/LineSeparator.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/gui/LineSeparator.hpp') diff --git a/include/gui/LineSeparator.hpp b/include/gui/LineSeparator.hpp index 8c39114..7996071 100644 --- a/include/gui/LineSeparator.hpp +++ b/include/gui/LineSeparator.hpp @@ -5,11 +5,11 @@ namespace gsr { class LineSeparator : public Widget { public: - enum class Type { + enum class Orientation { HORIZONTAL }; - LineSeparator(Type type, float width); + LineSeparator(Orientation orientation, float width); LineSeparator(const LineSeparator&) = delete; LineSeparator& operator=(const LineSeparator&) = delete; @@ -18,7 +18,7 @@ namespace gsr { mgl::vec2f get_size() override; private: - Type type; + Orientation orientation; float width; }; } \ No newline at end of file -- cgit v1.2.3