Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-96577

[REG 6.1.3 -> 6.2.0 RC] [Windows] Minimum and maximum window size is ignored

    XMLWordPrintable

Details

    • Windows

    Description

      Minimum and maximum sizes are ignored in Qt 6.2.0 (tested on beta4 and RC) on Windows. Linux/X11 and macOS are working properly.

      Code to reproduce the issue:

      #include <QGuiApplication>
      #include <QRasterWindow>
      
      int main(int argc, char *argv[])
      {
          QGuiApplication a(argc, argv);
      
          QRasterWindow w;
          w.setMinimumSize({200, 200});
          w.setMaximumSize({400, 400});
          w.show();
      
          return a.exec();
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            owolff Oliver Wolff
            zaps166 Błażej Szczygieł
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes