Mercurial > hg > easyhg
diff src/changesetitem.h @ 678:c0b46d0514a7 scale
Incomplete scaling updates. Should do this differently
author | Chris Cannam |
---|---|
date | Thu, 06 Dec 2018 14:55:45 +0000 |
parents | ae67ea0af696 |
children |
line wrap: on
line diff
--- a/src/changesetitem.h Thu Dec 06 13:54:34 2018 +0000 +++ b/src/changesetitem.h Thu Dec 06 14:55:45 2018 +0000 @@ -21,6 +21,8 @@ #include <QGraphicsObject> #include <QFont> +#include "common.h" + class Changeset; class ChangesetDetailItem; @@ -43,8 +45,8 @@ int column() const { return m_column; } int row() const { return m_row; } - void setColumn(int c) { m_column = c; setX(c * 100); } - void setRow(int r) { m_row = r; setY(r * 90); } + void setColumn(int c) { m_column = c; setX(c * scalePixelSize(100)); } + void setRow(int r) { m_row = r; setY(r * scalePixelSize(90)); } bool isWide() const { return m_wide; } void setWide(bool w) { m_wide = w; }