diff --git a/src/scene/imageitem.cpp b/src/scene/imageitem.cpp index c0c729b714..66c5d884af 100644 --- a/src/scene/imageitem.cpp +++ b/src/scene/imageitem.cpp @@ -50,6 +50,8 @@ void ImageItemOpenGL::preprocess() if (!m_texture || m_texture->size() != m_image.size()) { m_texture = GLTexture::upload(m_image); + m_texture->setFilter(GL_LINEAR); + m_texture->setWrapMode(GL_CLAMP_TO_EDGE); } else { m_texture->update(m_image); }