--- a/src/gl/axesprogram.cpp Sun Jun 12 23:59:37 2022 +0300 +++ b/src/gl/axesprogram.cpp Mon Jun 13 02:18:25 2022 +0300 @@ -89,7 +89,11 @@ void AxesLayer::paintGL() { + glLineWidth(5); + glEnable(GL_LINE_SMOOTH); + glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); this->shader.draw(GL_LINES); + glDisable(GL_LINE_SMOOTH); } void AxesLayer::mvpMatrixChanged(const glm::mat4& mvpMatrix)