mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-21 18:52:49 +00:00
Add inner left box to hide the padded outer box
Fixes: https://github.com/scorpion-26/gBar/issues/78
This commit is contained in:
parent
cb160d8608
commit
1cf8f820c2
1 changed files with 12 additions and 6 deletions
18
src/Bar.cpp
18
src/Bar.cpp
|
@ -1241,18 +1241,24 @@ namespace Bar
|
||||||
endLeftWidgets = -1;
|
endLeftWidgets = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto left = Widget::Create<Box>();
|
auto leftWithPadding = Widget::Create<Box>();
|
||||||
left->SetSpacing({6, false});
|
leftWithPadding->SetSpacing({6, false});
|
||||||
left->SetClass("left");
|
leftWithPadding->SetClass("left-with-padding");
|
||||||
left->SetOrientation(Utils::GetOrientation());
|
leftWithPadding->SetOrientation(Utils::GetOrientation());
|
||||||
// For centerTime the width of the left widget handles the centering.
|
// For centerTime the width of the left widget handles the centering.
|
||||||
// For not centerTime we want to set it as much right as possible. So let this expand as much as possible.
|
// For not centerTime we want to set it as much right as possible. So let this expand as much as possible.
|
||||||
Utils::SetTransform(*left, {endLeftWidgets, !Config::Get().centerWidgets, Alignment::Left, 12, 0});
|
Utils::SetTransform(*leftWithPadding, {endLeftWidgets, !Config::Get().centerWidgets, Alignment::Left, 12, 0});
|
||||||
|
|
||||||
|
auto left = Widget::Create<Box>();
|
||||||
|
left->SetClass("left");
|
||||||
|
left->SetOrientation(Utils::GetOrientation());
|
||||||
|
Utils::SetTransform(*left, {-1, false, Alignment::Left});
|
||||||
|
|
||||||
for (auto& widget : Config::Get().widgetsLeft)
|
for (auto& widget : Config::Get().widgetsLeft)
|
||||||
{
|
{
|
||||||
ChooseWidgetToDraw(widget, *left, Side::Left);
|
ChooseWidgetToDraw(widget, *left, Side::Left);
|
||||||
}
|
}
|
||||||
|
leftWithPadding->AddChild(std::move(left));
|
||||||
|
|
||||||
auto center = Widget::Create<Box>();
|
auto center = Widget::Create<Box>();
|
||||||
center->SetClass("center");
|
center->SetClass("center");
|
||||||
|
@ -1276,7 +1282,7 @@ namespace Bar
|
||||||
ChooseWidgetToDraw(widget, *right, Side::Right);
|
ChooseWidgetToDraw(widget, *right, Side::Right);
|
||||||
}
|
}
|
||||||
|
|
||||||
mainWidget->AddChild(std::move(left));
|
mainWidget->AddChild(std::move(leftWithPadding));
|
||||||
mainWidget->AddChild(std::move(center));
|
mainWidget->AddChild(std::move(center));
|
||||||
mainWidget->AddChild(std::move(right));
|
mainWidget->AddChild(std::move(right));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue