mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Windows build fix
This commit is contained in:
parent
4eeefba2c5
commit
b6cf8195f1
@ -1278,6 +1278,7 @@ void gGraphView::paintGL()
|
||||
|
||||
// Create QPainter object, note this is only valid from paintGL events!
|
||||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter::HighQualityAntialiasing, true);
|
||||
|
||||
painter.setRenderHint(QPainter::TextAntialiasing, true);
|
||||
|
||||
|
@ -424,10 +424,10 @@ QString Environment::searchInPath(const QString &executable, const QStringList &
|
||||
// Borrowed from QtCreator (http://stackoverflow.com/questions/3490336/how-to-reveal-in-finder-or-show-in-explorer-with-qt)
|
||||
void showInGraphicalShell(const QString & pathIn)
|
||||
{
|
||||
//QWidget * parent = NULL;
|
||||
|
||||
// Mac, Windows support folder or file.
|
||||
#if defined(Q_OS_WIN)
|
||||
QWidget * parent = NULL;
|
||||
Environment env;
|
||||
const QString explorer = env.searchInPath(QLatin1String("explorer.exe"));
|
||||
if (explorer.isEmpty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user