Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QColorDialog bug I wish to post, but Jira won't allow login from my QT Account tied to markjamescapella.proton.me
Qt 6.11 is out! See what's new in the release blog

QColorDialog bug I wish to post, but Jira won't allow login from my QT Account tied to markjamescapella.proton.me

Scheduled Pinned Locked Moved Unsolved General and Desktop
8 Posts 4 Posters 1.8k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    markjamescapella
    wrote on last edited by
    #1

    I've found a QColorDialog bug I wish to post, but Jira won't allow login from my QT Account tied to markjamescapella.proton.me

    It looks like a regression from a recent change.

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      Did you follow the suggestions of this pinned post ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      1
      • M Offline
        M Offline
        markjamescapella
        wrote on last edited by markjamescapella
        #3

        I wrote the email you suggested and no response.

        I tried to use a duckduck account and that doesnt work either (I don't prefer a gmail account) so perhaps I'll drop the bug quick:

        ColorPicker "Crosshairs" don't reflect color on drag when BLACK due to isNull() regression here:
        https://github.com/qt/qtbase/blame/v6.12.0-beta1/src/widgets/dialogs/qcolordialog.cpp#L817

        Video "Steps to reproduce" from my Dropbox:
        https://www.dropbox.com/scl/fi/upl1g7w8mofoli1ew1y1g/QT6bug.mkv?rlkey=u04njublm9si74hptnp3h4y34&st=qxc081uz&dl=0

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote last edited by
          #4

          To jira-admin (at) qt-project.org ?
          That is pretty strange... Can you try again ?
          Do you have a minimal buildable reproducer that shows your issue ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • H Offline
            H Offline
            Helmut.Jakoby
            wrote last edited by
            #5

            Hi @SGaist ,
            @markjamescapella has demonstrated the error in the second link (https://www.dropbox.com/scl/fi/upl1g7w8mofoli1ew1y1g/QT6bug.mkv?rlkey=u04njublm9si74hptnp3h4y34&st=qxc081uz&dl=0).
            The error mentioned also occurs in my applications using this dialog (VS2026 C++17, QT 6.11.00).

            https://www.globalobjects.de/

            SGaistS 1 Reply Last reply
            0
            • H Helmut.Jakoby

              Hi @SGaist ,
              @markjamescapella has demonstrated the error in the second link (https://www.dropbox.com/scl/fi/upl1g7w8mofoli1ew1y1g/QT6bug.mkv?rlkey=u04njublm9si74hptnp3h4y34&st=qxc081uz&dl=0).
              The error mentioned also occurs in my applications using this dialog (VS2026 C++17, QT 6.11.00).

              SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote last edited by
              #6

              @Helmut.Jakoby I saw the video. I am requesting a minimal example to ensure everybody works from the same start.

              Since you reproduced the same issue, can you open a ticket on the bug report system providing that minimal sample and indications ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              0
              • H Offline
                H Offline
                Helmut.Jakoby
                wrote last edited by Christian Ehrlicher
                #7

                It seems I do not have sufficient permissions to open a ticket in the bug reporting system.

                All that is likely missing is a minimal example:

                #include <QtWidgets/QApplication>
                #include <QtWidgets/QColorDialog>
                #include <QtCore/QDebug>
                
                int main(int argc, char *argv[]) {
                    QApplication app(argc, argv);
                
                    // Opens the color dialog with black as the initial color.
                    // Note that the HTML value and the corresponding color display
                    // do not change while the mouse button is held down and moved
                    // within the color field.
                    QColor selectedColor = QColorDialog::getColor(Qt::black, nullptr, "Select color");
                
                    if (selectedColor.isValid()) {
                        qDebug() << "Selected color:" << selectedColor.name();
                    } else {
                        qDebug() << "Selection cancelled.";
                    }
                
                    return 0;
                }
                

                Perhaps someone with sufficient permissions can use this—along with the details provided by @markjamescapella—to open a ticket in the bug reporting system.

                https://www.globalobjects.de/

                1 Reply Last reply
                0
                • Christian EhrlicherC Offline
                  Christian EhrlicherC Offline
                  Christian Ehrlicher
                  Lifetime Qt Champion
                  wrote last edited by
                  #8

                  Since all is calculated from HSV and V is 0, the behavior is correct.

                  Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                  Visit the Qt Academy at https://academy.qt.io/catalog

                  1 Reply Last reply
                  0

                  • Login

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • Users
                  • Groups
                  • Search
                  • Get Qt Extensions
                  • Unsolved