mirror of https://github.com/procxx/kepka.git
parent
4d84781a65
commit
296e009808
|
@ -205,10 +205,9 @@ base::unique_qptr<ConnectingWidget> ConnectingWidget::CreateDefaultWidget(
|
||||||
const auto weak = result.get();
|
const auto weak = result.get();
|
||||||
rpl::combine(
|
rpl::combine(
|
||||||
result->visibility(),
|
result->visibility(),
|
||||||
parent->heightValue(),
|
parent->heightValue()
|
||||||
std::move(shown)
|
) | rpl::start_with_next([=](float64 visible, int height) {
|
||||||
) | rpl::start_with_next([=](float64 visible, int height, bool shown) {
|
const auto hidden = (visible == 0.);
|
||||||
const auto hidden = (visible == 0.) || !shown;
|
|
||||||
if (weak->isHidden() != hidden) {
|
if (weak->isHidden() != hidden) {
|
||||||
weak->setVisible(!hidden);
|
weak->setVisible(!hidden);
|
||||||
}
|
}
|
||||||
|
@ -218,6 +217,11 @@ base::unique_qptr<ConnectingWidget> ConnectingWidget::CreateDefaultWidget(
|
||||||
height - weak->height(),
|
height - weak->height(),
|
||||||
visible));
|
visible));
|
||||||
}, weak->lifetime());
|
}, weak->lifetime());
|
||||||
|
std::move(
|
||||||
|
shown
|
||||||
|
) | rpl::start_with_next([=](bool shown) {
|
||||||
|
weak->setForceHidden(!shown);
|
||||||
|
}, weak->lifetime());
|
||||||
result->finishAnimating();
|
result->finishAnimating();
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue