summaryrefslogtreecommitdiff
path: root/src/savegameinfowidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/savegameinfowidget.cpp')
-rw-r--r--src/savegameinfowidget.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/savegameinfowidget.cpp b/src/savegameinfowidget.cpp
index 13cad272..3a1cdf91 100644
--- a/src/savegameinfowidget.cpp
+++ b/src/savegameinfowidget.cpp
@@ -25,11 +25,13 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
SaveGameInfoWidget::SaveGameInfoWidget(QWidget *parent)
- : QWidget(parent), ui(new Ui::SaveGameInfoWidget)
+ : QWidget(parent)
+ , ui(new Ui::SaveGameInfoWidget)
{
ui->setupUi(this);
this->setWindowFlags(Qt::ToolTip | Qt::BypassGraphicsProxyWidget);
setWindowOpacity(style()->styleHint(QStyle::SH_ToolTipLabel_Opacity, 0, this) / qreal(255.0));
+ ui->gameFrame->setBackgroundRole(QPalette::ToolTipBase);
// installEventFilter(this);
}