From d2ebd7bfefbafb0f93aeb6b238c983043cb3e024 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 10 Jul 2022 04:47:02 -0400 Subject: [PATCH] Fix size of VCVBezelLightBig. --- src/Logic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logic.cpp b/src/Logic.cpp index 7b43fbc..3b56584 100644 --- a/src/Logic.cpp +++ b/src/Logic.cpp @@ -112,7 +112,7 @@ struct VCVBezelLightBig : TBase { VCVBezelLightBig() { this->borderColor = color::BLACK_TRANSPARENT; this->bgColor = color::BLACK_TRANSPARENT; - this->box.size = mm2px(math::Vec(9.53, 9.53)); + this->box.size = mm2px(math::Vec(11.1936, 11.1936)); } };