Skip to content

Commit fc68fa9

Browse files
committed
Fix ROUND=2, add BACKSPACE/TAB/ENTER key constants
1 parent 19f6edb commit fc68fa9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/Processing.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,6 +1172,9 @@ static constexpr char ENTER = 10; // PC/Unix enter key
11721172
#ifdef DELETE
11731173
# undef DELETE
11741174
#endif
1175+
static constexpr int BACKSPACE = 8;
1176+
static constexpr int TAB = 9;
1177+
static constexpr int ENTER = 10;
11751178
static constexpr int RETURN = 13; // Mac return key (same key as ENTER on most systems)
11761179
static constexpr int ESC = 27;
11771180
static constexpr int DELETE = 127;
@@ -1190,7 +1193,7 @@ static constexpr int CORNERS = 1;
11901193
static constexpr int RADIUS = 2;
11911194

11921195
// Stroke caps and joins
1193-
static constexpr int ROUND = 10;
1196+
static constexpr int ROUND = 2;
11941197
static constexpr int SQUARE = 1;
11951198
static constexpr int PROJECT = 4;
11961199
static constexpr int MITER = 8;

0 commit comments

Comments
 (0)