aboutsummaryrefslogtreecommitdiff
path: root/include/gui/LineSeparator.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-11-14 00:25:37 +0100
committerdec05eba <dec05eba@protonmail.com>2024-11-14 00:25:37 +0100
commitd2f6b0738bdd90a5503fff404dfa4f0ad0962ef3 (patch)
treed6ff32e7416d1a0b7f8e6024807797e8447b4bcf /include/gui/LineSeparator.hpp
parent4ba1e814b748d57631f6b7afb7eaa63e8435c24e (diff)
Add option to start replay on fullscreen
Diffstat (limited to 'include/gui/LineSeparator.hpp')
-rw-r--r--include/gui/LineSeparator.hpp6
1 files changed, 3 insertions, 3 deletions
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