Skip to content

Commit

Permalink
Updated cursor colour and line thickness to be more visible if you ar…
Browse files Browse the repository at this point in the history
…e colourblind, and also to match the blue theme of SPIERS
  • Loading branch information
RussellGarwood committed Apr 26, 2020
1 parent 3c48292 commit 079078b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SPIERSedit/src/brush.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,8 @@ bool Brush_class::draw(int x, int y)
if (Active == false) return false;
QGraphicsLineItem *temp;
MyPen.setCosmetic(true);
MyPen.setColor(QColor(255, 0, 0));
MyPen.setWidth(1);
MyPen.setColor(QColor(102, 153, 255));
MyPen.setWidth(2);

//first check to see if we need to recreate or just move lines
if (LineList.count() == TopLinesCount + BottomLinesCount + LeftLinesCount + RightLinesCount) NoRecreateFlag = true;
Expand Down

0 comments on commit 079078b

Please sign in to comment.