mobile/profile: adjust offsets when scaling

If the user is scaling out again we need to make sure that our offsets
are adjusted so that we always show a subset of the profile and not
'empty space' outside of it. Instead of reimplementing the offset logic,
let's just trigger another paint() call.
This requires a trampoline function because of different signal and slot
signatures.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-03-24 15:02:17 -07:00
parent 577f713f1a
commit 6629d046b7
2 changed files with 13 additions and 0 deletions

View file

@ -28,6 +28,8 @@ public:
public slots:
void setMargin(int margin);
void screenChanged(QScreen *screen);
void triggerUpdate();
private:
int m_diveId;
qreal m_devicePixelRatio;