From: Torste Aikio Date: Tue, 1 Jun 2010 12:15:25 +0000 (+0300) Subject: Fixed mouse-events going to wrong widget X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=a756ab15d44f1affe020853c4f800ad74fda0599;p=irwi Fixed mouse-events going to wrong widget --- diff --git a/src/mainwidget.cpp b/src/mainwidget.cpp index 2ccfae3..76c6231 100644 --- a/src/mainwidget.cpp +++ b/src/mainwidget.cpp @@ -65,7 +65,7 @@ void MainWidget::paintEvent(QPaintEvent*) void MainWidget::showSettingsDialog() { - SettingsDlg dlg(this); + SettingsDlg dlg; dlg.exec(); update(); // Repaint required if bgAlpha value was changed }