mirror of https://github.com/procxx/kepka.git
Fix possible crash with nullptr screen.
This commit is contained in:
parent
7cfb122dea
commit
12614ab68c
|
@ -287,7 +287,9 @@ void MainMenu::initResetScaleButton() {
|
||||||
handle->screen()
|
handle->screen()
|
||||||
) | rpl::then(
|
) | rpl::then(
|
||||||
Core::QtSignalProducer(handle, &QWindow::screenChanged)
|
Core::QtSignalProducer(handle, &QWindow::screenChanged)
|
||||||
) | rpl::map([](QScreen *screen) {
|
) | rpl::filter([](QScreen *screen) {
|
||||||
|
return screen != nullptr;
|
||||||
|
}) | rpl::map([](QScreen * screen) {
|
||||||
return rpl::single(
|
return rpl::single(
|
||||||
screen->availableGeometry()
|
screen->availableGeometry()
|
||||||
) | rpl::then(
|
) | rpl::then(
|
||||||
|
|
Loading…
Reference in New Issue