Skip to content

Commit

Permalink
Fix CI Qt not compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStevns committed Jan 9, 2024
1 parent d533328 commit 5c69f33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core_lib/src/canvascursorpainter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CanvasCursorPainter::CanvasCursorPainter()

void CanvasCursorPainter::setupPen()
{
mCursorPen = Qt::gray;
mCursorPen = QPen(Qt::gray);
mCursorPen.setWidthF(1);
mCursorPen.setCosmetic(true);
}
Expand Down
1 change: 1 addition & 0 deletions core_lib/src/canvascursorpainter.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define CANVASCURSORPAINTER_H

#include <QPainter>
#include <QPen>

struct CanvasCursorPainterOptions
{
Expand Down

0 comments on commit 5c69f33

Please sign in to comment.