mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Barchart corner pixel fix, plus killed the rounded selection box
This commit is contained in:
parent
4f6eeaa5fb
commit
b4c324ef98
@ -117,10 +117,11 @@ void gBarChart::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
glColor4ub(0,0,0,255);
|
||||
glLineWidth (1);
|
||||
glBegin(GL_LINE_LOOP);
|
||||
glVertex2f(rect.x(), rect.y()+rect.height());
|
||||
glVertex2f(rect.x(), rect.y()+rect.height()+.5);
|
||||
glVertex2f(rect.x(), rect.y());
|
||||
glVertex2f(rect.x()+rect.width(),rect.y());
|
||||
glVertex2f(rect.x()+rect.width(), rect.y()+rect.height());
|
||||
glVertex2f(rect.x()+rect.width(), rect.y()+rect.height()+.5);
|
||||
//glVertex2f(rect.x(), rect.y()+rect.height());
|
||||
glEnd();
|
||||
|
||||
if (!draw_xticks_instead) {
|
||||
|
@ -122,10 +122,10 @@ void gSessionTime::Plot(gGraphWindow & w,float scrx,float scry)
|
||||
glColor4ub(0,0,0,255);
|
||||
glLineWidth (1);
|
||||
glBegin(GL_LINE_LOOP);
|
||||
glVertex2f(rect.x(), rect.y()+rect.height());
|
||||
glVertex2f(rect.x(), rect.y()+rect.height()+.5);
|
||||
glVertex2f(rect.x(), rect.y());
|
||||
glVertex2f(rect.x()+rect.width(),rect.y());
|
||||
glVertex2f(rect.x()+rect.width(), rect.y()+rect.height());
|
||||
glVertex2f(rect.x()+rect.width(), rect.y()+rect.height()+.5);
|
||||
glEnd();
|
||||
if (!draw_xticks_instead) {
|
||||
if (datedrawn.find(dy)==datedrawn.end()) {
|
||||
|
@ -868,8 +868,19 @@ void gGraphWindow::paintGL()
|
||||
|
||||
if (m_mouseLDown) {
|
||||
if (m_mouseRBrect.width()>0)
|
||||
//glDisable(GL_DEPTH_TEST);
|
||||
RoundedRectangle(m_mouseRBrect.x(),m_mouseRBrect.y(),m_mouseRBrect.width(),m_mouseRBrect.height(),5,QColor(50,50,200,64));
|
||||
glDisable(GL_DEPTH_TEST);
|
||||
glColor4ub(50,50,200,64);
|
||||
glEnable(GL_BLEND);
|
||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||
|
||||
glBegin(GL_QUADS);
|
||||
glVertex2f(m_mouseRBrect.x(),m_mouseRBrect.y());
|
||||
glVertex2f(m_mouseRBrect.x()+m_mouseRBrect.width(),m_mouseRBrect.y());
|
||||
glVertex2f(m_mouseRBrect.x()+m_mouseRBrect.width(),m_mouseRBrect.y()+m_mouseRBrect.height());
|
||||
glVertex2f(m_mouseRBrect.x(),m_mouseRBrect.y()+m_mouseRBrect.height());
|
||||
glEnd();
|
||||
glDisable(GL_BLEND);
|
||||
//RoundedRectangle(m_mouseRBrect.x(),m_mouseRBrect.y(),m_mouseRBrect.width(),m_mouseRBrect.height(),5,QColor(50,50,200,64));
|
||||
//glEnable(GL_DEPTH_TEST);
|
||||
}
|
||||
glEnable(GL_DEPTH_TEST);
|
||||
|
Loading…
Reference in New Issue
Block a user