From 95d9d17572da20b466b9092d76aaecb1ced8058d Mon Sep 17 00:00:00 2001 From: David Korth Date: Sat, 18 Jan 2025 22:37:36 -0500 Subject: [PATCH] [kde] AboutTab::showEvent(): Pass the event to the base class. TODO: Check other QWidget subclasses to see if this is needed there. --- src/kde/config/AboutTab.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kde/config/AboutTab.cpp b/src/kde/config/AboutTab.cpp index 714824f8c..ea80c9fbc 100644 --- a/src/kde/config/AboutTab.cpp +++ b/src/kde/config/AboutTab.cpp @@ -634,6 +634,9 @@ void AboutTab::showEvent(QShowEvent *event) d->checkedForUpdates = true; d->checkForUpdates(); } + + // Pass the event to the base class. + super::showEvent(event); } /** UpdateChecker slots **/