diff options
author | crupest <crupest@outlook.com> | 2020-06-27 23:54:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-27 23:54:45 +0800 |
commit | e11be6caa9ef9b2b198ca61846e32f469627556e (patch) | |
tree | cecdfc59b24546b7d64173ac921e26ea77a7eabd /include | |
parent | 456ca63c02848f59f17435996fb8c563bced1b5a (diff) | |
download | cru-e11be6caa9ef9b2b198ca61846e32f469627556e.tar.gz cru-e11be6caa9ef9b2b198ca61846e32f469627556e.tar.bz2 cru-e11be6caa9ef9b2b198ca61846e32f469627556e.zip |
...
Diffstat (limited to 'include')
-rw-r--r-- | include/cru/ui/base.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/cru/ui/base.hpp b/include/cru/ui/base.hpp index dacf2d6f..b9ce0c88 100644 --- a/include/cru/ui/base.hpp +++ b/include/cru/ui/base.hpp @@ -190,14 +190,12 @@ namespace internal { constexpr int align_start = 0; constexpr int align_end = align_start + 1; constexpr int align_center = align_end + 1; -constexpr int align_stretch = align_center + 1; } // namespace internal enum class Alignment { Start = internal::align_start, End = internal::align_end, Center = internal::align_center, - Stretch = internal::align_stretch }; struct CornerRadius { |