decoration: bring back border_part_of_window
fixes #9683, now under decoration: though
This commit is contained in:
parent
2a6d070774
commit
f3db1b172c
3 changed files with 10 additions and 1 deletions
|
|
@ -147,7 +147,9 @@ eDecorationLayer CHyprBorderDecoration::getDecorationLayer() {
|
|||
}
|
||||
|
||||
uint64_t CHyprBorderDecoration::getDecorationFlags() {
|
||||
return !doesntWantBorders() ? DECORATION_PART_OF_MAIN_WINDOW : 0;
|
||||
static auto PPARTOFWINDOW = CConfigValue<Hyprlang::INT>("decoration:border_part_of_window");
|
||||
|
||||
return *PPARTOFWINDOW && !doesntWantBorders() ? DECORATION_PART_OF_MAIN_WINDOW : 0;
|
||||
}
|
||||
|
||||
std::string CHyprBorderDecoration::getDisplayName() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue