diff options
author | crupest <crupest@outlook.com> | 2022-02-24 15:40:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-24 15:40:46 +0800 |
commit | d9a3b8c14b9ab1bc591ca7c373daaf7141d2d098 (patch) | |
tree | e80308c57f9c81441954161fbb5804565bb158ad /src/ui/mapper/MapperRegistry.cpp | |
parent | 9a3a9f487b24a7b1afff5e6f07e88096dc5755be (diff) | |
download | cru-d9a3b8c14b9ab1bc591ca7c373daaf7141d2d098.tar.gz cru-d9a3b8c14b9ab1bc591ca7c373daaf7141d2d098.tar.bz2 cru-d9a3b8c14b9ab1bc591ca7c373daaf7141d2d098.zip |
...
Diffstat (limited to 'src/ui/mapper/MapperRegistry.cpp')
-rw-r--r-- | src/ui/mapper/MapperRegistry.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/mapper/MapperRegistry.cpp b/src/ui/mapper/MapperRegistry.cpp index afbbc8b9..b70418ef 100644 --- a/src/ui/mapper/MapperRegistry.cpp +++ b/src/ui/mapper/MapperRegistry.cpp @@ -17,6 +17,7 @@ #include "cru/ui/mapper/style/HoverConditionMapper.h" #include "cru/ui/mapper/style/NoConditionMapper.h" #include "cru/ui/mapper/style/OrConditionMapper.h" +#include "cru/ui/mapper/style/PreferredSizeStylerMapper.h" #include "cru/ui/mapper/style/StyleRuleMapper.h" #include "cru/ui/mapper/style/StyleRuleSetMapper.h" @@ -47,6 +48,7 @@ MapperRegistry::MapperRegistry() { RegisterMapper(new HoverConditionMapper()); RegisterMapper(new NoConditionMapper()); RegisterMapper(new OrConditionMapper()); + RegisterMapper(new PreferredSizeStylerMapper()); RegisterMapper(new StyleRuleMapper()); RegisterMapper(new StyleRuleSetMapper()); } |