From 34beaed2b270519cdb5ae120eff9dcbf386967dd Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 26 Aug 2016 18:57:39 +0300 Subject: [PATCH] Tape app. Show tooltip in table. --HG-- branch : develop --- src/app/tape/tmainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/tape/tmainwindow.cpp b/src/app/tape/tmainwindow.cpp index c5c48968b..da3ae388b 100644 --- a/src/app/tape/tmainwindow.cpp +++ b/src/app/tape/tmainwindow.cpp @@ -2200,6 +2200,7 @@ QTableWidgetItem *TMainWindow::AddCell(const QString &text, int row, int column, { QTableWidgetItem *item = new QTableWidgetItem(text); item->setTextAlignment(aligment); + item->setToolTip(text); // set the item non-editable (view only), and non-selectable Qt::ItemFlags flags = item->flags();