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

QT::SP_MediaSkipForward incorrect in Linux

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P3: Somewhat important
    • 4.8.0
    • 4.7.2
    • GUI: Look'n'Feel
    • None
    • Linux 64bits kernel - ArchLinux packages - Qt 4.7.2

    Description

      QStyle::SP_MediaSkipForward returns the same icon than QStyle::SP_MediaSkipBackward. It's not happening in Windows environment.

      The source code related to the attachment:

      actionFirst=new QAction(tr("First"), toolBarTop);
      toolBarTop->addAction(actionFirst);
      actionFirst->setIcon(style()->standardPixmap(QStyle::SP_MediaSkipBackward));

      actionPrevious=new QAction(tr("Previous"), toolBarTop);
      toolBarTop->addAction(actionPrevious);
      actionPrevious->setIcon(style()->standardPixmap(QStyle::SP_MediaSeekBackward));
      //actionPrevious->setEnabled(false);

      actionNext=new QAction(tr("Next"), toolBarTop);
      toolBarTop->addAction(actionNext);
      actionNext->setIcon(style()->standardPixmap(QStyle::SP_MediaSeekForward));
      //actionNext->setEnabled(false);

      actionLast=new QAction(tr("Last"), toolBarTop);
      toolBarTop->addAction(actionLast);
      actionLast->setIcon(style()->standardPixmap(QStyle::SP_MediaSkipForward));

      Attachments

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

        Activity

          People

            andysh Andy Shaw
            yimgo Guillaume BUREL
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes