diff --git a/SavegameWidget.cpp b/SavegameWidget.cpp index a129bde..4574c16 100755 --- a/SavegameWidget.cpp +++ b/SavegameWidget.cpp @@ -167,6 +167,7 @@ void SavegameWidget::contextMenuEvent(QContextMenuEvent *ev) contextMenu.addAction(tr("Copy savegame"), this, SLOT(on_cmdCopy_clicked())); contextMenu.addAction(tr("Delete savegame"), this, SLOT(on_cmdDelete_clicked())); contextMenu.exec(ev->globalPos()); + setStyleSheet(styleSheet()); // fix multi highlight bug } void SavegameWidget::on_cbSelected_stateChanged(int arg1) diff --git a/SnapmaticWidget.cpp b/SnapmaticWidget.cpp index 7262ccc..b28ddfe 100755 --- a/SnapmaticWidget.cpp +++ b/SnapmaticWidget.cpp @@ -176,6 +176,7 @@ void SnapmaticWidget::contextMenuEvent(QContextMenuEvent *ev) contextMenu.addAction(tr("Export picture"), this, SLOT(on_cmdExport_clicked())); contextMenu.addAction(tr("Delete picture"), this, SLOT(on_cmdDelete_clicked())); contextMenu.exec(ev->globalPos()); + setStyleSheet(styleSheet()); // fix multi highlight bug } void SnapmaticWidget::on_cbSelected_stateChanged(int arg1)