There was an error while loading. Please reload this page.
1 parent 19f6edb commit fc68fa9Copy full SHA for fc68fa9
1 file changed
src/Processing.h
@@ -1172,6 +1172,9 @@ static constexpr char ENTER = 10; // PC/Unix enter key
1172
#ifdef DELETE
1173
# undef DELETE
1174
#endif
1175
+static constexpr int BACKSPACE = 8;
1176
+static constexpr int TAB = 9;
1177
+static constexpr int ENTER = 10;
1178
static constexpr int RETURN = 13; // Mac return key (same key as ENTER on most systems)
1179
static constexpr int ESC = 27;
1180
static constexpr int DELETE = 127;
@@ -1190,7 +1193,7 @@ static constexpr int CORNERS = 1;
1190
1193
static constexpr int RADIUS = 2;
1191
1194
1192
1195
// Stroke caps and joins
-static constexpr int ROUND = 10;
1196
+static constexpr int ROUND = 2;
1197
static constexpr int SQUARE = 1;
1198
static constexpr int PROJECT = 4;
1199
static constexpr int MITER = 8;
0 commit comments