Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#2782 closed Bug (fixed)

Cannot copy/paste hash (among other fields) from QT4 torrent properties window

Reported by: jrgp Owned by: Longinus00
Priority: Normal Milestone: 1.93
Component: Qt Client Version: 1.80
Severity: Minor Keywords: feature-disparity
Cc:

Description

In the QT4 interface, the torrent properties window does not have selectable fields. (most notably the hash field)

The GTK interface does not have this problem.

Change History (11)

comment:1 Changed 13 years ago by charles

  • Severity changed from Normal to Minor
  • Type changed from Bug to Enhancement

comment:2 Changed 13 years ago by charles

  • Status changed from new to assigned

comment:3 Changed 13 years ago by charles

  • Keywords patch-needed qt added; copy paste qt4 removed

comment:4 Changed 13 years ago by Longinus00

Need to set the QLabel setTextInteractionFlags to Qt::TextSelectableByMouse? - http://doc.trolltech.com/4.5/qt.html#TextInteractionFlag-enum

--- qt/details.cc
+++ qt/details.cc
@@ -876,6 +876,7 @@ Details :: createInfoTab( )
     hig->addSectionTitle( tr( "Details" ) );
     hig->addRow( tr( "Location:" ), myLocationLabel = new SqueezeLabel );
     hig->addRow( tr( "Hash:" ), myHashLabel = new SqueezeLabel );
+    myHashLabel->setTextInteractionFlags( Qt::TextSelectableByMouse );
     hig->addRow( tr( "Privacy:" ), myPrivacyLabel = new SqueezeLabel );
     hig->addRow( tr( "Origin:" ), myOriginLabel = new SqueezeLabel );
     hig->addRow( tr( "Comment:" ), myCommentBrowser = new QTextBrowser );

comment:5 Changed 13 years ago by charles

  • Milestone changed from None Set to 2.00
  • Status changed from assigned to new

fixed in trunk for 2.00 by r10462

comment:6 Changed 13 years ago by charles

  • Keywords backport-1.9x added; patch-needed qt removed
  • Resolution set to fixed
  • Status changed from new to closed

comment:7 Changed 13 years ago by charles

  • Resolution fixed deleted
  • Status changed from closed to reopened

Reopening for proper attribution

comment:8 Changed 13 years ago by charles

  • Owner changed from charles to Longinus00
  • Status changed from reopened to new

comment:9 Changed 13 years ago by charles

  • Resolution set to fixed
  • Status changed from new to closed

comment:10 Changed 13 years ago by charles

  • Keywords backport-1.9x removed
  • Milestone changed from 2.00 to 1.93

backported to 1.9x by r10574

comment:11 Changed 13 years ago by charles

  • Keywords feature-disparity added
  • Type changed from Enhancement to Bug
Note: See TracTickets for help on using tickets.