mirror of https://github.com/procxx/kepka.git
Fix visual glitch in poll results viewing.
We need a visible widget to mark more button height. An invisible 'more' button doesn't receive geometry change events.
This commit is contained in:
parent
53d206c12c
commit
57e9651a8a
|
@ -579,6 +579,9 @@ ListController *CreateAnswerRows(
|
||||||
headerWrap->resize(headerWrap->width(), height);
|
headerWrap->resize(headerWrap->width(), height);
|
||||||
}, header->lifetime());
|
}, header->lifetime());
|
||||||
|
|
||||||
|
auto moreTopWidget = object_ptr<Ui::RpWidget>(container);
|
||||||
|
moreTopWidget->resize(0, 0);
|
||||||
|
const auto moreTop = container->add(std::move(moreTopWidget));
|
||||||
const auto more = container->add(
|
const auto more = container->add(
|
||||||
object_ptr<Ui::SlideWrap<Ui::SettingsButton>>(
|
object_ptr<Ui::SlideWrap<Ui::SettingsButton>>(
|
||||||
container,
|
container,
|
||||||
|
@ -604,7 +607,7 @@ ListController *CreateAnswerRows(
|
||||||
rpl::combine(
|
rpl::combine(
|
||||||
std::move(visibleTop),
|
std::move(visibleTop),
|
||||||
headerWrap->geometryValue(),
|
headerWrap->geometryValue(),
|
||||||
more->topValue()
|
moreTop->topValue()
|
||||||
) | rpl::filter([=](int, QRect headerRect, int moreTop) {
|
) | rpl::filter([=](int, QRect headerRect, int moreTop) {
|
||||||
return moreTop >= headerRect.y() + headerRect.height();
|
return moreTop >= headerRect.y() + headerRect.height();
|
||||||
}) | rpl::start_with_next([=](
|
}) | rpl::start_with_next([=](
|
||||||
|
|
Loading…
Reference in New Issue