From db54b5d51d5269c2e17964e0e9842f4a2f210673 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Tue, 12 May 2020 01:11:19 +0800 Subject: Stop using a dumber version of QRect(). This is going to break old configuration, so bump QMP_CONFIGURATION_FILE_REV. --- qmidiplayer-desktop/qmpchannelswindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qmidiplayer-desktop/qmpchannelswindow.cpp') diff --git a/qmidiplayer-desktop/qmpchannelswindow.cpp b/qmidiplayer-desktop/qmpchannelswindow.cpp index e22d75e..8957254 100644 --- a/qmidiplayer-desktop/qmpchannelswindow.cpp +++ b/qmidiplayer-desktop/qmpchannelswindow.cpp @@ -300,8 +300,8 @@ qmpChannelsWindow::qmpChannelsWindow(QWidget *parent): 0, true ); - if (mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect(-999, -999, 999, 999)).toRect() != QRect(-999, -999, 999, 999)) - setGeometry(mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect(-999, -999, 999, 999)).toRect()); + if (!mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect()).toRect().isNull()) + setGeometry(mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect()).toRect()); if (mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlWShown", 0).toInt()) { show(); @@ -315,8 +315,8 @@ void qmpChannelsWindow::showEvent(QShowEvent *event) { mainwindow->getSettings()->setOptionRaw("DialogStatus/ChnlWShown", 1); } - if (mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect(-999, -999, 999, 999)).toRect() != QRect(-999, -999, 999, 999)) - setGeometry(mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect(-999, -999, 999, 999)).toRect()); + if (!mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect()).toRect().isNull()) + setGeometry(mainwindow->getSettings()->getOptionRaw("DialogStatus/ChnlW", QRect()).toRect()); event->accept(); } -- cgit v1.2.3