Skip to content
Permalink
Browse files
Merge pull request #6779 from spycrab/qt_trans_fix
Qt/WrapInScrollArea: Only use transparency on Windows
  • Loading branch information
Helios747 committed May 7, 2018
2 parents e62c26c + fc069f7 commit ecd9b94
Showing 1 changed file with 6 additions and 0 deletions.
@@ -30,11 +30,17 @@ QWidget* GetWrappedWidget(QWidget* wrapped_widget, QWidget* to_resize, int margi
std::max(recommended_height, to_resize->height()));
}

#ifdef _WIN32
// Transparency can cause unwanted side-effects on OSes other than Windows

// Make sure the background color stays consistent with the parent widget
QPalette p = wrapped_widget->palette();

p.setColor(QPalette::Window, QColor(0, 0, 0, 0));

wrapped_widget->setPalette(p);
scroll->setPalette(p);
#endif

return scroll;
}

0 comments on commit ecd9b94

Please sign in to comment.