From 729e3d198a2d0a223462d97f58164045bddb9389 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 28 Jul 2013 15:33:44 +1000 Subject: [PATCH] Qt5 fix: Mac bindtexture crash, snapshot graph is supposed to be invisible --- Graphs/gGraphView.cpp | 2 +- daily.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 7a4a978c..a1a2ef8a 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -3284,7 +3284,7 @@ void gGraphView::setCubeImage(QImage *img) cubeimg.clear(); cubeimg.push_back(img); - cubetex=bindTexture(*img); + //cubetex=bindTexture(*img); glBindTexture(GL_TEXTURE_2D,0); } diff --git a/daily.cpp b/daily.cpp index 77a1b85b..0a0070d1 100644 --- a/daily.cpp +++ b/daily.cpp @@ -70,7 +70,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared) GraphView=new gGraphView(ui->graphMainArea,shared); GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding); - snapGV=new gGraphView(ui->graphMainArea); + snapGV=new gGraphView(GraphView); //ui->graphMainArea); snapGV->setMinimumSize(172,172); snapGV->hideSplitter(); snapGV->hide();