https://bugs.kde.org/show_bug.cgi?id=379297
Abhinav Gangwar <agang...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |agang...@kde.org --- Comment #1 from Abhinav Gangwar <agang...@kde.org> --- It's because of change in GeometryLayer::render() method in commit f847505b02940aff9e37a6fa2317a7098c078d97, the zoom level is currently being calculated as: `const int maxZoomLevel = qMin(d->m_tileLevel, d->m_styleBuilder->maximumZoomLevel()); ` This change causes the issue. Before the commit f847505b02940aff9e37a6fa2317a7098c078d97, it was being calculated as: ` const int maxZoomLevel = qMin<int>(qMax<int>(qLn(viewport->radius()*4/256)/qLn(2.0), 1), d->m_styleBuilder->maximumZoomLevel()); and worked fine. I don't understand the difference between those two ways of calculating the zoomLevel. So, need help with that. -- You are receiving this mail because: You are watching all bug changes.