Skip to content

Commit

Permalink
oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
fundies committed Jan 8, 2020
1 parent cf2e7aa commit 638060f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Widgets/AssetScrollAreaBackground.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ class AssetScrollAreaBackground : public QWidget {
void paintEvent(QPaintEvent* event) override;
bool eventFilter(QObject* obj, QEvent* event) override;

AssetView* _assetView = nullptr;
bool _drawSolidBackground = true;
qreal _currentZoom = 1;
qreal _zoomFactor = 2;
qreal _maxZoom = 3200;
qreal _minZoom = 0.0625;
AssetView* _assetView;
bool _drawSolidBackground;
qreal _currentZoom;
qreal _zoomFactor;
qreal _maxZoom;
qreal _minZoom;
QPoint _totalDrawOffset;
QPoint _userDrawOffset;
QSet<int> _pressedKeys;
QColor _backgroundColor = Qt::GlobalColor::gray;
bool _parentHasFocus = false;
int _viewMoveSpeed = 4;
QColor _backgroundColor;
bool _parentHasFocus;
int _viewMoveSpeed;
};

#endif // ASSETSCROLLAREABACKGROUND_H

0 comments on commit 638060f

Please sign in to comment.