Don't abort ready phase for moving camera with keys
Rationale: The keys are equivalent to moving the mouse, but boving the mouse doesn't abort the ready phase. So this is only fair: Players should not be punished for using different controls.
#ifndef PREVIEWIMAGEPROVIDER_H
#define PREVIEWIMAGEPROVIDER_H
#include <QPixmap>
#include <QQuickImageProvider>
#include <QSize>
class PreviewImageProvider : public QQuickImageProvider {
public:
PreviewImageProvider();
QPixmap requestPixmap(const QString &id, QSize *size,
const QSize &requestedSize);
void setImage(const QImage &preview);
private:
QPixmap m_px;
};
#endif // PREVIEWIMAGEPROVIDER_H