Skip to content

Commit

Permalink
Fixes #9656 - allows to scroll per pixel vertically in the log messag…
Browse files Browse the repository at this point in the history
…es tabs
  • Loading branch information
slarosa committed Apr 28, 2014
1 parent ad0b4da commit 7581370
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/qgsmessagelogviewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ void QgsMessageLogViewer::logMessage( QString message, QString tag, QgsMessageLo
w->setGridStyle( Qt::DotLine );
w->setEditTriggers( QAbstractItemView::NoEditTriggers );
w->setHorizontalScrollMode( QAbstractItemView::ScrollPerPixel );
w->setVerticalScrollMode( QAbstractItemView::ScrollPerPixel );
w->setHorizontalHeaderLabels( QStringList() << tr( "Timestamp" ) << tr( "Message" ) << tr( "Level" ) );
tabWidget->addTab( w, tag );

Expand Down

0 comments on commit 7581370

Please sign in to comment.