internal: make borderSize prop overridable

This commit is contained in:
vaxerski
2023-06-04 21:29:38 +02:00
parent df98db5092
commit d83e5b8409
3 changed files with 7 additions and 5 deletions

View File

@@ -100,10 +100,10 @@ struct SWindowSpecialRenderData {
CWindowOverridableVar<int64_t> inactiveBorderColor = -1; // -1 means unset
// set by the layout
int borderSize = -1;
bool rounding = true;
bool border = true;
bool decorate = true;
CWindowOverridableVar<int> borderSize = -1; // -1 means unset
bool rounding = true;
bool border = true;
bool decorate = true;
};
struct SWindowAdditionalConfigData {