Commented out unused block of code in Qt branches view paint.

This commit is contained in:
mjbudd77 2022-01-04 21:19:21 -05:00
parent 66971b7e6b
commit ede8c5fc7e
1 changed files with 4 additions and 4 deletions

View File

@ -938,10 +938,10 @@ void BRANCHES::paintEvent(QPaintEvent *event)
{ {
painter.setPen( QColor( 0, 194, 64 ) ); painter.setPen( QColor( 0, 194, 64 ) );
if (!bookmarks->bookmarksArray[i].notEmpty && bookmarks->bookmarksArray[i].floatingPhase > 0) //if (!bookmarks->bookmarksArray[i].notEmpty && bookmarks->bookmarksArray[i].floatingPhase > 0)
{ //{
tempBranchX += bookmarks->bookmarksArray[i].floatingPhase; // tempBranchX += bookmarks->bookmarksArray[i].floatingPhase;
} //}
painter.drawText( box[i], Qt::AlignCenter, tr(txt) ); painter.drawText( box[i], Qt::AlignCenter, tr(txt) );
} }
} }