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

On the Mac a Dialog is not resizeable if the margin is small ......

    XMLWordPrintable

Details

    • Bug
    • Resolution: Out of scope
    • P3: Somewhat important
    • Some future release
    • 4.4.3
    • Widgets: Layout
    • None
    • macOS

    Description

      As can be seen with the following example : it is impossible to grab the resize handle :

      #include <QtGui>

      class TestDialog : public QDialog
      {
      public:
      TestDialog()

      { setSizeGripEnabled(true); QGridLayout* gl = new QGridLayout(this); //setting a small margin results in the resize grip being unavailable: //gl->setMargin(5); gl->setSpacing(5); QPushButton* okButton = new QPushButton("OK"); connect(okButton, SIGNAL(clicked()), this, SLOT(accept())); gl->addWidget(okButton,1,2); }

      };

      int main(int argc, char **argv)
      {
      QApplication app(argc, argv);
      TestDialog td;
      return td.exec();
      }

      Attachments

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

        Activity

          People

            Unassigned Unassigned
            dettman Dean Dettman (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes