qmlfrontend/preview_acceptor.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 26 May 2020 23:02:49 +0200
changeset 15582 6a38a30e772a
parent 14371 90bd2c331703
permissions -rw-r--r--
Fix wrong team health bar height after calling SetClanColor If you called SetClanColor on a team with a name that had a letter with a descender in it, then called SetClanColor on it, the height of the team bar is 1 pixel less than it should be because it was copied from the name texture.

#include "preview_acceptor.h"

#include <QImage>
#include <QQmlEngine>

#include "preview_image_provider.h"

PreviewAcceptor::PreviewAcceptor(QQmlEngine *engine, QObject *parent)
    : QObject(parent), m_previewProvider(new PreviewImageProvider()) {
  engine->addImageProvider(QLatin1String("preview"), m_previewProvider);
}

void PreviewAcceptor::setImage(const QImage &preview) {
  m_previewProvider->setImage(preview);
}