diff --git a/libqf/libqfgui/src/internal/desktoputils.cpp b/libqf/libqfgui/src/internal/desktoputils.cpp index 5cbe31462..4010583a7 100644 --- a/libqf/libqfgui/src/internal/desktoputils.cpp +++ b/libqf/libqfgui/src/internal/desktoputils.cpp @@ -21,10 +21,10 @@ QRect DesktopUtils::moveRectToVisibleDesktopScreen(const QRect &rect) if (!screen_rect.contains(rect.topLeft())) { ret.moveTopLeft(screen_rect.topLeft()); } - if (ret.size().width() < screen_rect.size().width()) { + if (ret.size().width() > screen_rect.size().width()) { ret.setWidth(screen_rect.width()); } - if (ret.size().height() < screen_rect.size().height()) { + if (ret.size().height() > screen_rect.size().height()) { ret.setHeight(screen_rect.height()); } return ret; diff --git a/quickevent/app/quickevent/src/appversion.h b/quickevent/app/quickevent/src/appversion.h index f0a6f979b..5f48e9583 100644 --- a/quickevent/app/quickevent/src/appversion.h +++ b/quickevent/app/quickevent/src/appversion.h @@ -1,4 +1,4 @@ #pragma once -#define APP_VERSION "3.4.18" +#define APP_VERSION "3.4.19"